depot/third_party/nixpkgs/pkgs/development/python-modules/trustme/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

46 lines
903 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, cryptography
, futures ? null
, pyopenssl
, service-identity
, pytestCheckHook
, idna
}:
buildPythonPackage rec {
pname = "trustme";
version = "0.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-XgeyPXDO7WTzuzauS5q8UjVMFsmNRasDe+4rX7/+WGw=";
};
checkInputs = [
pyopenssl
pytestCheckHook
service-identity
];
propagatedBuildInputs = [
cryptography
idna
] ++ lib.optionals (!isPy3k) [
futures
];
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "trustme" ];
meta = with lib; {
description = "High quality TLS certs while you wait, for the discerning tester";
homepage = "https://github.com/python-trio/trustme";
license = with licenses; [ mit asl20 ];
maintainers = with maintainers; [ catern ];
};
}