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

38 lines
743 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, cryptography
, ipaddress
, pyasn1
, pyasn1-modules
, idna
, attrs
, pytest
}:
buildPythonPackage rec {
pname = "service_identity";
version = "18.1.0";
src = fetchFromGitHub {
owner = "pyca";
repo = pname;
rev = version;
sha256 = "1aw475ksmd4vpl8cwfdcsw2v063nbhnnxpy633sb75iqp9aazhlx";
};
propagatedBuildInputs = [
pyasn1 pyasn1-modules idna attrs cryptography
] ++ lib.optionals (pythonOlder "3.3") [ ipaddress ];
checkInputs = [ pytest ];
checkPhase = "py.test";
meta = with lib; {
description = "Service identity verification for pyOpenSSL";
license = licenses.mit;
2018-03-07 00:56:48 +01:00
homepage = https://service-identity.readthedocs.io;
};
}