python3Packages.crccheck: 0.6 -> 1.0

This commit is contained in:
Elis Hirwing 2020-10-03 10:09:17 +02:00
parent c097f663b6
commit 237dcf208a
No known key found for this signature in database
GPG Key ID: D57EFA625C9A925F
1 changed files with 10 additions and 7 deletions

View File

@ -1,21 +1,24 @@
{ lib, stdenv, buildPythonPackage, fetchPypi { lib, stdenv, buildPythonPackage, fetchPypi, isPy3k
, nose }: , nose }:
buildPythonPackage rec { let
pname = "crccheck"; pname = "crccheck";
version = "0.6"; version = "1.0";
in buildPythonPackage {
inherit pname version;
buildInputs = [ nose ]; checkInputs = [ nose ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0ckymm6s5kw08i1j35fy2cfha1hyq94pq1kc66brb552qgjs91jn"; sha256 = "1ay9lgy80j7lklm07iw2wq7giwnv9fbv50mncblqlc39y322vi0p";
extension = "zip";
}; };
disabled = !isPy3k;
meta = with lib; { meta = with lib; {
description = "Python library for CRCs and checksums"; description = "Python library for CRCs and checksums";
homepage = "https://bitbucket.org/martin_scharrer/crccheck"; homepage = "https://sourceforge.net/projects/crccheck/";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ]; maintainers = with maintainers; [ etu ];
platforms = platforms.linux; platforms = platforms.linux;