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

27 lines
594 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";
2021-11-25 22:46:42 +00:00
version = "1.1";
2020-10-03 09:09:17 +01:00
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;
2021-11-25 22:46:42 +00:00
sha256 = "45962231cab62b82d05160553eebd9b60ef3ae79dc39527caef52e27f979fa96";
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;
};
}