My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pycrc/default.nix

18 lines
503 B

{ 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 ];
};
}