python3Packages.crccheck: init at 0.6

This commit is contained in:
Elis Hirwing 2019-11-29 18:18:13 +01:00
parent 229c002c8c
commit 473a21f39e
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi
, nose }:
buildPythonPackage rec {
pname = "crccheck";
version = "0.6";
buildInputs = [ nose ];
src = fetchPypi {
inherit pname version;
sha256 = "0ckymm6s5kw08i1j35fy2cfha1hyq94pq1kc66brb552qgjs91jn";
extension = "zip";
};
meta = with stdenv.lib; {
description = "Python library for CRCs and checksums";
homepage = "https://bitbucket.org/martin_scharrer/crccheck";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}

View file

@ -1730,6 +1730,8 @@ in {
crc16 = callPackage ../development/python-modules/crc16 { };
crccheck = callPackage ../development/python-modules/crccheck { };
croniter = callPackage ../development/python-modules/croniter { };
csscompressor = callPackage ../development/python-modules/csscompressor {};