evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / crcelk / default.nix
blobf082899cfe039595f2694e00b8c84ad026cef1cf
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "crcelk";
11   version = "1.3";
12   pyproject = true;
14   disabled = pythonOlder "3.9";
16   src = fetchFromGitHub {
17     owner = "zeroSteiner";
18     repo = "crcelk";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-eJt0qcG0ejTQJyjOSi6Au2jH801KOMnk7f6cLbd7ADw=";
21   };
23   build-system = [ setuptools ];
25   # Module has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "crcelk" ];
30   meta = {
31     description = "Implementation of the CRC algorithm";
32     homepage = "https://github.com/zeroSteiner/crcelk";
33     license = lib.licenses.mit;
34     maintainers = with lib.maintainers; [ fab ];
35   };