tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.fingerprints: init at 1.0.3
helbling.dev
4 years ago
fceea030
3eb8428c
+44
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
fingerprints
default.nix
top-level
python-packages.nix
+42
pkgs/development/python-modules/fingerprints/default.nix
···
1
1
+
{ lib
2
2
+
, fetchPypi
3
3
+
, buildPythonPackage
4
4
+
, normality
5
5
+
, mypy
6
6
+
, coverage
7
7
+
, nose
8
8
+
}:
9
9
+
buildPythonPackage rec {
10
10
+
pname = "fingerprints";
11
11
+
version = "1.0.3";
12
12
+
13
13
+
src = fetchPypi {
14
14
+
inherit pname version;
15
15
+
sha256 = "cafd5f92b5b91e4ce34af2b954da9c05b448a4778947785abb19a14f363352d0";
16
16
+
};
17
17
+
18
18
+
propagatedBuildInputs = [
19
19
+
normality
20
20
+
];
21
21
+
22
22
+
checkInputs = [
23
23
+
mypy
24
24
+
coverage
25
25
+
nose
26
26
+
];
27
27
+
28
28
+
checkPhase = ''
29
29
+
nosetests
30
30
+
'';
31
31
+
32
32
+
pythonImportsCheck = [
33
33
+
"fingerprints"
34
34
+
];
35
35
+
36
36
+
meta = with lib; {
37
37
+
description = "A library to generate entity fingerprints";
38
38
+
homepage = "https://github.com/alephdata/fingerprints";
39
39
+
license = licenses.mit;
40
40
+
maintainers = teams.determinatesystems.members;
41
41
+
};
42
42
+
}
+2
pkgs/top-level/python-packages.nix
···
2409
2409
2410
2410
finalfusion = callPackage ../development/python-modules/finalfusion { };
2411
2411
2412
2412
+
fingerprints = callPackage ../development/python-modules/fingerprints { };
2413
2413
+
2412
2414
fints = callPackage ../development/python-modules/fints { };
2413
2415
2414
2416
fiona = callPackage ../development/python-modules/fiona { };