06c08984ae
Also run tests and hardcode path to xmlsec1.
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, xmlsec
|
|
, cryptography, defusedxml, future, pyopenssl, dateutil, pytz, requests, six
|
|
, mock, pyasn1, pymongo, pytest, responses
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysaml2";
|
|
version = "4.6.5";
|
|
|
|
# No tests in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "IdentityPython";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0xlbr52vzx1j9sg65jhqv01vp4a49afjy03lc2zb0ggx0xxzngvb";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./hardcode-xmlsec1-path.patch;
|
|
inherit xmlsec;
|
|
})
|
|
];
|
|
|
|
propagatedBuildInputs = [ cryptography defusedxml future pyopenssl dateutil pytz requests six ];
|
|
|
|
checkInputs = [ mock pyasn1 pymongo pytest responses ];
|
|
|
|
# Disabled tests try to access the network
|
|
checkPhase = ''
|
|
py.test -k "not test_load_extern_incommon \
|
|
and not test_load_remote_encoding \
|
|
and not test_load_external"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/rohe/pysaml2";
|
|
description = "Python implementation of SAML Version 2 Standard";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|