pythonPackages.pycryptopp: Enable on PyPy.

This commit is contained in:
Corbin 2019-02-11 18:28:50 -08:00 committed by Frederik Rietdijk
parent 9b2bf34e04
commit 3c04844d18

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
, setuptoolsDarcs
, darcsver
, pkgs
@ -11,7 +10,7 @@
buildPythonPackage rec {
pname = "pycryptopp";
version = "0.7.1.869544967005693312591928092448767568728501330214";
disabled = isPy3k || isPyPy; # see https://bitbucket.org/pypy/pypy/issue/1190/
disabled = isPy3k; # see https://bitbucket.org/pypy/pypy/issue/1190/
src = fetchPypi {
inherit pname version;