python3.pkgs.crc16: init at 0.1.1
This commit is contained in:
parent
f4d57f3c02
commit
7498f0971b
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/crc16/default.nix
Normal file
18
pkgs/development/python-modules/crc16/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "crc16";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "15nkx0pa4lskwin84flpk8fsw3jqg6wic6v3s83syjqg76h6my61";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://code.google.com/archive/p/pycrc16/";
|
||||||
|
description = "Python library for calculating CRC16";
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1570,6 +1570,8 @@ in {
|
||||||
|
|
||||||
cram = callPackage ../development/python-modules/cram { };
|
cram = callPackage ../development/python-modules/cram { };
|
||||||
|
|
||||||
|
crc16 = callPackage ../development/python-modules/crc16 { };
|
||||||
|
|
||||||
csscompressor = callPackage ../development/python-modules/csscompressor {};
|
csscompressor = callPackage ../development/python-modules/csscompressor {};
|
||||||
|
|
||||||
csvs-to-sqlite = callPackage ../development/python-modules/csvs-to-sqlite { };
|
csvs-to-sqlite = callPackage ../development/python-modules/csvs-to-sqlite { };
|
||||||
|
|
Loading…
Reference in a new issue