Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / crc32c / default.nix
blobdd2c9059ed5f6515a9376e367b376a7788e03888
1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4   version = "2.0.1";
5   pname = "crc32c";
7   src = fetchFromGitHub {
8     owner = "ICRAR";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0vyac7pchh083h5qdjwhhacfq77frkrq1bjzsn51qv1vwcdrpnrf";
12   };
14   meta = {
15     description = "Python software implementation and hardware API of CRC32C checksum algorithm";
16     homepage = "https://github.com/ICRAR/crc32c";
17     license = lib.licenses.lgpl21;
18     maintainers = with lib.maintainers; [ bcdarwin ];
19   };