nixpkgs/pkgs/development/python-modules/pycrypto/default.nix

29 lines
807 B
Nix
Raw Permalink Normal View History

{ buildPythonPackage, pycryptodome }:
# This is a dummy package providing the drop-in replacement pycryptodome.
# https://github.com/NixOS/nixpkgs/issues/21671
buildPythonPackage rec {
version = pycryptodome.version;
pname = "pycrypto";
# Cannot build wheel otherwise (zip 1980 issue)
SOURCE_DATE_EPOCH=315532800;
# We need to have a dist-info folder, so let's create one with setuptools
unpackPhase = ''
echo "from setuptools import setup; setup(name='${pname}', version='${version}', install_requires=['pycryptodome'])" > setup.py
2015-01-02 20:47:43 +00:00
'';
propagatedBuildInputs = [ pycryptodome ];
2014-05-05 01:43:23 +00:00
# Our dummy has no tests
doCheck = false;
2014-05-14 01:31:37 +00:00
meta = {
homepage = "http://www.pycrypto.org/";
description = "Python Cryptography Toolkit";
platforms = pycryptodome.meta.platforms;
};
}