mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
18 lines
448 B
Nix
18 lines
448 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "crcmod";
|
|
version = "1.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)";
|
|
homepage = "http://crcmod.sourceforge.net/";
|
|
license = licenses.mit;
|
|
};
|
|
}
|