3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/crccheck/default.nix

27 lines
582 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k
2019-11-29 17:18:13 +00:00
, nose }:
2020-10-03 09:09:17 +01:00
let
2019-11-29 17:18:13 +00:00
pname = "crccheck";
2020-10-03 09:09:17 +01:00
version = "1.0";
in buildPythonPackage {
inherit pname version;
2019-11-29 17:18:13 +00:00
2020-10-03 09:09:17 +01:00
checkInputs = [ nose ];
2019-11-29 17:18:13 +00:00
src = fetchPypi {
inherit pname version;
2020-10-03 09:09:17 +01:00
sha256 = "1ay9lgy80j7lklm07iw2wq7giwnv9fbv50mncblqlc39y322vi0p";
2019-11-29 17:18:13 +00:00
};
2020-10-03 09:09:17 +01:00
disabled = !isPy3k;
meta = with lib; {
2019-11-29 17:18:13 +00:00
description = "Python library for CRCs and checksums";
2020-10-03 09:09:17 +01:00
homepage = "https://sourceforge.net/projects/crccheck/";
2019-11-29 17:18:13 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}