about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycrc/default.nix
blob: 71404dd4d5ad169bef3c67f3c13c60ae10fd2fb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "pycrc";
  version = "1.21";

  src = fetchPypi {
    pname = "PyCRC";
    inherit 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 ];
  };
}