pretender: 1.2.0 -> 1.3.0 (#378434)
[NixPkgs.git] / pkgs / development / python-modules / crcmod / default.nix
blobbeff240c986ebd434a2d36d789faa05c0645313a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "crcmod";
9   version = "1.7";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w";
15   };
17   meta = with lib; {
18     description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)";
19     homepage = "https://crcmod.sourceforge.net/";
20     license = licenses.mit;
21   };