nixpkgs/pkgs/development/python-modules/m2crypto/default.nix
2018-12-03 16:50:40 +01:00

36 lines
724 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, swig2
, openssl
, typing
}:
buildPythonPackage rec {
version = "0.30.1";
pname = "M2Crypto";
src = fetchPypi {
inherit pname version;
sha256 = "a1b2751cdadc6afac3df8a5799676b7b7c67a6ad144bb62d38563062e7cd3fc6";
};
buildInputs = [ swig2 openssl ];
propagatedBuildInputs = [ typing ];
preConfigure = ''
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;
};
}