Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pycrc / default.nix
blobca65f784038ae1f175d3f49e527ac3527ef401d3
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "PyCRC";
5   version = "1.21";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "d3b0e788b501f48ae2ff6eeb34652343c9095e4356a65df217ed29b51e4045b6";
10   };
12   meta = with lib; {
13     homepage = "https://github.com/cristianav/PyCRC";
14     description = "Python libraries for CRC calculations (it supports CRC-16, CRC-32, CRC-CCITT, etc)";
15     license = licenses.gpl3;
16     maintainers = with maintainers; [ guibou ];
17   };