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

49 lines
886 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, cryptography
, futures
, pytest
, pyopenssl
, service-identity
, idna
}:
2018-05-11 17:38:30 +01:00
buildPythonPackage rec {
pname = "trustme";
2019-12-19 19:31:24 +00:00
version = "0.6.0";
2018-05-11 17:38:30 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:24 +00:00
sha256 = "9dfb18b568729d0219f758cddca1a91bab59f62ca41ee0e8acce5e657ec97b6c";
2018-05-11 17:38:30 +01:00
};
checkInputs = [
pytest
pyopenssl
service-identity
];
2018-05-11 17:38:30 +01:00
propagatedBuildInputs = [
cryptography
idna
2018-06-04 05:06:09 +01:00
] ++ lib.optionals (!isPy3k) [
futures
2018-05-11 17:38:30 +01:00
];
checkPhase = ''
pytest
'';
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
2018-05-11 17:38:30 +01:00
meta = {
description = "High quality TLS certs while you wait, for the discerning tester";
homepage = "https://github.com/python-trio/trustme";
2018-05-11 17:38:30 +01:00
license = with lib.licenses; [ mit asl20 ];
maintainers = with lib.maintainers; [ catern ];
};
}