depot/third_party/nixpkgs/pkgs/development/python-modules/crccheck/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 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;
};
}