blob: eda1987a5b07644bc4ce0c30062b28a30a312a5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "crc16";
version = "0.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "15nkx0pa4lskwin84flpk8fsw3jqg6wic6v3s83syjqg76h6my61";
};
meta = with lib; {
homepage = "https://code.google.com/archive/p/pycrc16/";
description = "Python library for calculating CRC16";
license = licenses.lgpl3;
maintainers = with maintainers; [ abbradar ];
};
}
|