evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / fingerprints / default.nix
blob6b3bf80810f67cf52561bed072c83943e670b5a3
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   normality,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "fingerprints";
13   version = "1.2.3";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "alephdata";
20     repo = "fingerprints";
21     rev = version;
22     hash = "sha256-U2UslCy1OagVTtllCKsEBX4zI/qIczbxs2Cxzy+/Xys=";
23   };
25   nativeBuildInputs = [ setuptools ];
27   propagatedBuildInputs = [ normality ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "fingerprints" ];
33   meta = with lib; {
34     description = "Library to generate entity fingerprints";
35     homepage = "https://github.com/alephdata/fingerprints";
36     license = licenses.mit;
37     maintainers = [ ];
38   };