python3.pkgs.fingerprints: init at 1.0.3
This commit is contained in:
parent
3eb8428c86
commit
fceea030c9
2 changed files with 44 additions and 0 deletions
42
pkgs/development/python-modules/fingerprints/default.nix
Normal file
42
pkgs/development/python-modules/fingerprints/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2409,6 +2409,8 @@ in {
|
||||||
|
|
||||||
finalfusion = callPackage ../development/python-modules/finalfusion { };
|
finalfusion = callPackage ../development/python-modules/finalfusion { };
|
||||||
|
|
||||||
|
fingerprints = callPackage ../development/python-modules/fingerprints { };
|
||||||
|
|
||||||
fints = callPackage ../development/python-modules/fints { };
|
fints = callPackage ../development/python-modules/fints { };
|
||||||
|
|
||||||
fiona = callPackage ../development/python-modules/fiona { };
|
fiona = callPackage ../development/python-modules/fiona { };
|
||||||
|
|
Loading…
Reference in a new issue