lol

python3.pkgs.fingerprints: init at 1.0.3

+44
+42
pkgs/development/python-modules/fingerprints/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , normality 5 + , mypy 6 + , coverage 7 + , nose 8 + }: 9 + buildPythonPackage rec { 10 + pname = "fingerprints"; 11 + version = "1.0.3"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + sha256 = "cafd5f92b5b91e4ce34af2b954da9c05b448a4778947785abb19a14f363352d0"; 16 + }; 17 + 18 + propagatedBuildInputs = [ 19 + normality 20 + ]; 21 + 22 + checkInputs = [ 23 + mypy 24 + coverage 25 + nose 26 + ]; 27 + 28 + checkPhase = '' 29 + nosetests 30 + ''; 31 + 32 + pythonImportsCheck = [ 33 + "fingerprints" 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "A library to generate entity fingerprints"; 38 + homepage = "https://github.com/alephdata/fingerprints"; 39 + license = licenses.mit; 40 + maintainers = teams.determinatesystems.members; 41 + }; 42 + }
+2
pkgs/top-level/python-packages.nix
··· 2409 2409 2410 2410 finalfusion = callPackage ../development/python-modules/finalfusion { }; 2411 2411 2412 + fingerprints = callPackage ../development/python-modules/fingerprints { }; 2413 + 2412 2414 fints = callPackage ../development/python-modules/fints { }; 2413 2415 2414 2416 fiona = callPackage ../development/python-modules/fiona { };