1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "pycryptodome-test-vectors";
10 version = "1.0.14";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-1De0SjXcr8BibDVhv7G1BqG3x0RcxfudNuI3QWG8mjc=";
16 extension = "zip";
17 };
18
19 nativeBuildInputs = [ setuptools ];
20
21 # Module has no tests
22 doCheck = false;
23
24 pythonImportsCheck = [ "pycryptodome_test_vectors" ];
25
26 meta = with lib; {
27 description = "Test vectors for PyCryptodome cryptographic library";
28 homepage = "https://www.pycryptodome.org/";
29 license = with licenses; [
30 bsd2 # and
31 asl20
32 ];
33 maintainers = with maintainers; [ fab ];
34 };
35}