Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / crc16 / default.nix
blobeda1987a5b07644bc4ce0c30062b28a30a312a5a
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "crc16";
5   version = "0.1.1";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "15nkx0pa4lskwin84flpk8fsw3jqg6wic6v3s83syjqg76h6my61";
11   };
13   meta = with lib; {
14     homepage = "https://code.google.com/archive/p/pycrc16/";
15     description = "Python library for calculating CRC16";
16     license = licenses.lgpl3;
17     maintainers = with maintainers; [ abbradar ];
18   };