nixpkgs/pkgs/development/python-modules/crccheck/default.nix
2023-01-05 01:08:56 +01:00

36 lines
705 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, unittestCheckHook
}:
let
pname = "crccheck";
version = "1.3.0";
in buildPythonPackage {
inherit pname version;
format = "setuptools";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "MartinScharrer";
repo = "crccheck";
rev = "refs/tags/v${version}";
hash = "sha256-nujt3RWupvCtk7gORejtSwqqVjW9VwztOVGXBHW9T+k=";
};
checkInputs = [
unittestCheckHook
];
meta = with lib; {
description = "Python library for CRCs and checksums";
homepage = "https://github.com/MartinScharrer/crccheck";
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}