python3Packages.crccheck: init at 0.6
This commit is contained in:
parent
229c002c8c
commit
473a21f39e
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/crccheck/default.nix
Normal file
23
pkgs/development/python-modules/crccheck/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1730,6 +1730,8 @@ in {
|
||||||
|
|
||||||
crc16 = callPackage ../development/python-modules/crc16 { };
|
crc16 = callPackage ../development/python-modules/crc16 { };
|
||||||
|
|
||||||
|
crccheck = callPackage ../development/python-modules/crccheck { };
|
||||||
|
|
||||||
croniter = callPackage ../development/python-modules/croniter { };
|
croniter = callPackage ../development/python-modules/croniter { };
|
||||||
|
|
||||||
csscompressor = callPackage ../development/python-modules/csscompressor {};
|
csscompressor = callPackage ../development/python-modules/csscompressor {};
|
||||||
|
|
Loading…
Reference in a new issue