Merge pull request #45373 from guibou/gb/init_pycrc

pythonPackages.pycrc: init at 1.21
This commit is contained in:
Jörg Thalheim 2018-08-23 18:44:37 +01:00 committed by GitHub
commit 10f79b1eca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "PyCRC";
version = "1.21";
src = fetchPypi {
inherit pname version;
sha256 = "d3b0e788b501f48ae2ff6eeb34652343c9095e4356a65df217ed29b51e4045b6";
};
meta = with lib; {
homepage = https://github.com/cristianav/PyCRC;
description = "Python libraries for CRC calculations (it supports CRC-16, CRC-32, CRC-CCITT, etc)";
license = licenses.gpl3;
maintainers = with maintainers; [ guibou ];
};
}

@ -382,6 +382,8 @@ in {
pycangjie = disabledIf (!isPy3k) (callPackage ../development/python-modules/pycangjie { }); pycangjie = disabledIf (!isPy3k) (callPackage ../development/python-modules/pycangjie { });
pycrc = callPackage ../development/python-modules/pycrc { };
pycrypto = callPackage ../development/python-modules/pycrypto { }; pycrypto = callPackage ../development/python-modules/pycrypto { };
pycryptodome = callPackage ../development/python-modules/pycryptodome { }; pycryptodome = callPackage ../development/python-modules/pycryptodome { };