Merge pull request #109961 from etu/python-crccheck-update-2
python3Packages.crccheck: 0.6 -> 1.0
This commit is contained in:
commit
a121a5c5e4
1 changed files with 10 additions and 7 deletions
|
@ -1,21 +1,24 @@
|
|||
{ lib, stdenv, buildPythonPackage, fetchPypi
|
||||
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k
|
||||
, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
let
|
||||
pname = "crccheck";
|
||||
version = "0.6";
|
||||
version = "1.0";
|
||||
in buildPythonPackage {
|
||||
inherit pname version;
|
||||
|
||||
buildInputs = [ nose ];
|
||||
checkInputs = [ nose ];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ckymm6s5kw08i1j35fy2cfha1hyq94pq1kc66brb552qgjs91jn";
|
||||
extension = "zip";
|
||||
sha256 = "1ay9lgy80j7lklm07iw2wq7giwnv9fbv50mncblqlc39y322vi0p";
|
||||
};
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for CRCs and checksums";
|
||||
homepage = "https://bitbucket.org/martin_scharrer/crccheck";
|
||||
homepage = "https://sourceforge.net/projects/crccheck/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ etu ];
|
||||
platforms = platforms.linux;
|
||||
|
|
Loading…
Reference in a new issue