mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
pythonPackages.crcmod: Move to own file
This commit is contained in:
parent
a7b6d5c960
commit
6361a50103
17
pkgs/development/python-modules/crcmod/default.nix
Normal file
17
pkgs/development/python-modules/crcmod/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -1655,18 +1655,7 @@ in {
|
||||
|
||||
covCore = callPackage ../development/python-modules/cov-core { };
|
||||
|
||||
crcmod = buildPythonPackage rec {
|
||||
name = "crcmod-1.7";
|
||||
src = pkgs.fetchurl {
|
||||
url = mirror://pypi/c/crcmod/crcmod-1.7.tar.gz;
|
||||
sha256 = "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w";
|
||||
};
|
||||
meta = {
|
||||
description = "Python module for generating objects that compute the Cyclic Redundancy Check (CRC)";
|
||||
homepage = http://crcmod.sourceforge.net/;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
crcmod = callPackage ../development/python-modules/crcmod { };
|
||||
|
||||
credstash = callPackage ../development/python-modules/credstash { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user