pythonPackages.pyrsistent: Disable on Python 2

This commit is contained in:
Sandro Jäckel 2020-12-07 14:16:35 +01:00
parent 9bd0caf66b
commit 2722142fbe
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, six
, pytest_4
, hypothesis_4
@ -11,6 +12,8 @@ buildPythonPackage rec {
pname = "pyrsistent";
version = "0.17.3";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e";