biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pycryptodome / vectors.nix
blob349738ee0b2aa10eb33374afe26f1a6a9712640c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "pycryptodome-test-vectors";
10   version = "1.0.14";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-1De0SjXcr8BibDVhv7G1BqG3x0RcxfudNuI3QWG8mjc=";
16     extension = "zip";
17   };
19   nativeBuildInputs = [ setuptools ];
21   # Module has no tests
22   doCheck = false;
24   pythonImportsCheck = [ "pycryptodome_test_vectors" ];
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   };