printrun: 1.6.0 -> 2.0.0rc5
This commit is contained in:
parent
34281ee113
commit
400213309c
1 changed files with 6 additions and 6 deletions
|
@ -1,18 +1,18 @@
|
||||||
{ lib, stdenv, python27Packages, fetchFromGitHub }:
|
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
||||||
|
|
||||||
python27Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "printrun";
|
pname = "printrun";
|
||||||
version = "1.6.0";
|
version = "2.0.0rc5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "kliment";
|
owner = "kliment";
|
||||||
repo = "Printrun";
|
repo = "Printrun";
|
||||||
rev = "${pname}-${version}";
|
rev = "${pname}-${version}";
|
||||||
sha256 = "0nhcx1bi1hals0a6d6994y0kcwsfqx3hplwbmn9136hgrplg0l2l";
|
sha256 = "179x8lwrw2h7cxnkq7izny6qcb4nhjnd8zx893i77zfhzsa6kx81";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python27Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
wxPython30 pyserial dbus-python psutil numpy pyopengl pyglet cython
|
appdirs cython dbus-python numpy six wxPython_4_0 psutil pyglet pyopengl pyserial
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
Loading…
Reference in a new issue