Merge pull request #44402 from dotlambda/doitlive-python3

doitlive: use python3Packages
This commit is contained in:
Jörg Thalheim 2018-08-03 23:49:58 +01:00 committed by GitHub
commit c065349282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;