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

36 lines
724 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
2018-11-24 13:51:51 +00:00
, swig2
, openssl
, typing
}:
buildPythonPackage rec {
2018-11-04 10:35:05 +00:00
version = "0.30.1";
pname = "M2Crypto";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:05 +00:00
sha256 = "a1b2751cdadc6afac3df8a5799676b7b7c67a6ad144bb62d38563062e7cd3fc6";
};
2018-11-24 13:51:51 +00:00
buildInputs = [ swig2 openssl ];
propagatedBuildInputs = [ typing ];
preConfigure = ''
2018-11-24 13:51:51 +00:00
substituteInPlace setup.py --replace "self.openssl = '/usr'" "self.openssl = '${openssl.dev}'"
'';
doCheck = false; # another test that depends on the network.
meta = with stdenv.lib; {
description = "A Python crypto and SSL toolkit";
homepage = http://chandlerproject.org/Projects/MeTooCrypto;
license = licenses.mit;
};
}