ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / fingerprints / default.nix
blobea68c6fa8d4ae53be3a4cc77afb31674400e8912
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";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "cafd5f92b5b91e4ce34af2b954da9c05b448a4778947785abb19a14f363352d0";
16   };
18   propagatedBuildInputs = [
19     normality
20   ];
22   checkInputs = [
23     mypy
24     coverage
25     nose
26   ];
28   checkPhase = ''
29     nosetests
30   '';
32   pythonImportsCheck = [
33     "fingerprints"
34   ];
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   };