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/crcmod/default.nix

17 lines
438 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "crcmod";
version = "1.7";
src = fetchPypi {
inherit pname version;
sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w";
};
meta = with lib; {
description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)";
homepage = "http://crcmod.sourceforge.net/";
license = licenses.mit;
};
}