My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pycryptodome-test-vectors/default.nix

30 lines
652 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pycryptodome-test-vectors";
version = "1.0.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-3BTh7as4CikvVfUx2xBZlUOaq/dAQNNFHpuRxWg/5N0=";
extension = "zip";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"pycryptodome_test_vectors"
];
meta = with lib; {
description = "Test vectors for PyCryptodome cryptographic library";
homepage = "https://www.pycryptodome.org/";
license = with licenses; [ bsd2 /* and */ asl20 ];
maintainers = with maintainers; [ fab ];
};
}