mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
pythonPackages.shortuuid: disable on Python 2
Compatibility was dropped upstream for release 1.0.0.
This commit is contained in:
parent
8bc409e546
commit
83ef8e4393
@ -1,5 +1,6 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, isPy3k
|
||||
, fetchPypi
|
||||
, pep8
|
||||
}:
|
||||
@ -8,6 +9,8 @@ buildPythonPackage rec {
|
||||
pname = "shortuuid";
|
||||
version = "1.0.1";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3c11d2007b915c43bee3e10625f068d8a349e04f0d81f08f5fa08507427ebf1f";
|
||||
|
Loading…
Reference in New Issue
Block a user