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

29 lines
755 B
Nix
Raw Normal View History

2018-06-04 06:06:09 +02:00
{ lib, buildPythonPackage, fetchPypi, isPy3k, cryptography, futures, pytest, pyopenssl, service-identity }:
2018-05-11 18:38:30 +02:00
buildPythonPackage rec {
pname = "trustme";
2019-04-16 19:15:41 +02:00
version = "0.5.1";
2018-05-11 18:38:30 +02:00
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:41 +02:00
sha256 = "8d12837c6242afe1660dee08d44d96f40c9a5074cc58caf39f8c8fdf4b526529";
2018-05-11 18:38:30 +02:00
};
checkInputs = [ pytest pyopenssl service-identity ];
checkPhase = ''
py.test
'';
propagatedBuildInputs = [
cryptography
2018-06-04 06:06:09 +02:00
] ++ lib.optionals (!isPy3k) [
futures
2018-05-11 18:38:30 +02: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 ];
};
}