python3.pkgs.fingerprints: init at 1.0.3

This commit is contained in:
Cole Helbling 2021-04-19 21:03:00 -07:00
parent 3eb8428c86
commit fceea030c9
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, fetchPypi
, buildPythonPackage
, normality
, mypy
, coverage
, nose
}:
buildPythonPackage rec {
pname = "fingerprints";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "cafd5f92b5b91e4ce34af2b954da9c05b448a4778947785abb19a14f363352d0";
};
propagatedBuildInputs = [
normality
];
checkInputs = [
mypy
coverage
nose
];
checkPhase = ''
nosetests
'';
pythonImportsCheck = [
"fingerprints"
];
meta = with lib; {
description = "A library to generate entity fingerprints";
homepage = "https://github.com/alephdata/fingerprints";
license = licenses.mit;
maintainers = teams.determinatesystems.members;
};
}

View file

@ -2409,6 +2409,8 @@ in {
finalfusion = callPackage ../development/python-modules/finalfusion { };
fingerprints = callPackage ../development/python-modules/fingerprints { };
fints = callPackage ../development/python-modules/fints { };
fiona = callPackage ../development/python-modules/fiona { };