nixpkgs/pkgs/development/python-modules/crccheck/default.nix
2019-12-07 12:50:04 +01:00

24 lines
560 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, nose }:
buildPythonPackage rec {
pname = "crccheck";
version = "0.6";
buildInputs = [ nose ];
src = fetchPypi {
inherit pname version;
sha256 = "0ckymm6s5kw08i1j35fy2cfha1hyq94pq1kc66brb552qgjs91jn";
extension = "zip";
};
meta = with stdenv.lib; {
description = "Python library for CRCs and checksums";
homepage = "https://bitbucket.org/martin_scharrer/crccheck";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}