biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / crc16 / default.nix
blob6ef211c06fba1b8bf562a9c549816007ac239d59
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "crc16";
11   version = "0.1.1";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-wfhqoDkPS68H0mMbFrl5WA6uHZqXOoJs5FNToi7o05Y=";
19   };
21   build-system = [ setuptools ];
23   # Tests are outdated
24   doCheck = false;
26   pythonImportsCheck = [ "crc16" ];
28   meta = with lib; {
29     description = "Python library for calculating CRC16";
30     homepage = "https://code.google.com/archive/p/pycrc16/";
31     license = licenses.lgpl3Plus;
32     maintainers = with maintainers; [ abbradar ];
33   };