depot/third_party/nixpkgs/pkgs/development/python-modules/crccheck/default.nix
Default email c6ca5b8f13 Project import generated by Copybara.
GitOrigin-RevId: e4d49de45a3b5dbcb881656b4e3986e666141ea9
2022-07-18 18:21:45 +02:00

26 lines
590 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy3k
, nose }:
let
pname = "crccheck";
version = "1.1";
in buildPythonPackage {
inherit pname version;
checkInputs = [ nose ];
src = fetchPypi {
inherit pname version;
sha256 = "45962231cab62b82d05160553eebd9b60ef3ae79dc39527caef52e27f979fa96";
};
disabled = !isPy3k;
meta = with lib; {
description = "Python library for CRCs and checksums";
homepage = "https://sourceforge.net/projects/crccheck/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}