doitlive: use python3Packages
This commit is contained in:
parent
a6c7132abc
commit
2f5bbbebfd
@ -1,15 +1,15 @@
|
|||||||
{ stdenv, pythonPackages }:
|
{ stdenv, python3Packages }:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "doitlive";
|
pname = "doitlive";
|
||||||
version = "3.0.3";
|
version = "3.0.3";
|
||||||
|
|
||||||
src = pythonPackages.fetchPypi {
|
src = python3Packages.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj";
|
sha256 = "19i16ca835rb3gal1sxyvpyilj9a80n6nikf0smlzmxck38x86fj";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [ click ];
|
propagatedBuildInputs = with python3Packages; [ click ];
|
||||||
|
|
||||||
# disable tests (too many failures)
|
# disable tests (too many failures)
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user