Apply @jonringers suggestions

Co-authored-by: Jon <jonringer@users.noreply.github.com>
This commit is contained in:
Alexander Biehl 2020-06-05 12:19:51 +02:00 committed by GitHub
parent 1e4308dfd4
commit a5bdbb895d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -1,11 +1,13 @@
{ buildPythonPackage
, callPackage
, fetchPypi
, isPy27
, jre
, lib
, pythonPackages
, stdenv
}:
let
pname = "skein";
version = "0.8.0";
@ -17,6 +19,7 @@ let
in
buildPythonPackage rec {
inherit pname version src;
disabled = isPy27;
propagatedBuildInputs = with pythonPackages; [ cryptography grpcio grpcio-tools jupyter pytest pyyaml requests jre ];

View File

@ -6338,7 +6338,7 @@ in {
python_statsd = callPackage ../development/python-modules/python_statsd { };
skein = disabledIf isPy27 (callPackage ../development/python-modules/skein { });
skein = callPackage ../development/python-modules/skein { };
stompclient = callPackage ../development/python-modules/stompclient { };