pythonPackages.pyrsistent: Disable on Python 2
This commit is contained in:
parent
9bd0caf66b
commit
2722142fbe
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, isPy27
|
||||||
, six
|
, six
|
||||||
, pytest_4
|
, pytest_4
|
||||||
, hypothesis_4
|
, hypothesis_4
|
||||||
|
@ -11,6 +12,8 @@ buildPythonPackage rec {
|
||||||
pname = "pyrsistent";
|
pname = "pyrsistent";
|
||||||
version = "0.17.3";
|
version = "0.17.3";
|
||||||
|
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e";
|
sha256 = "2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e";
|
||||||
|
|
Loading…
Reference in a new issue