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

29 lines
755 B
Nix
Raw Normal View History

2018-06-04 05:06:09 +01:00
{ lib, buildPythonPackage, fetchPypi, isPy3k, cryptography, futures, pytest, pyopenssl, service-identity }:
2018-05-11 17:38:30 +01:00
buildPythonPackage rec {
pname = "trustme";
2019-02-14 07:37:31 +00:00
version = "0.5.0";
2018-05-11 17:38:30 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:31 +00:00
sha256 = "89b8d689013afeaa34b63e77f6d60eebad63edc4b247e744c7d6d891ed13a564";
2018-05-11 17:38:30 +01:00
};
checkInputs = [ pytest pyopenssl service-identity ];
checkPhase = ''
py.test
'';
propagatedBuildInputs = [
cryptography
2018-06-04 05:06:09 +01:00
] ++ lib.optionals (!isPy3k) [
futures
2018-05-11 17:38:30 +01:00
];
meta = {
description = "#1 quality TLS certs while you wait, for the discerning tester";
homepage = https://github.com/python-trio/trustme;
license = with lib.licenses; [ mit asl20 ];
maintainers = with lib.maintainers; [ catern ];
};
}