Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6cd64dacb41d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a121a5c5e461
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 19, 2021

  1. Copy the full SHA
    237dcf2 View commit details

Commits on Jan 20, 2021

  1. Merge pull request #109961 from etu/python-crccheck-update-2

    python3Packages.crccheck: 0.6 -> 1.0
    SuperSandro2000 authored Jan 20, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a121a5c View commit details
Showing with 10 additions and 7 deletions.
  1. +10 −7 pkgs/development/python-modules/crccheck/default.nix
17 changes: 10 additions & 7 deletions pkgs/development/python-modules/crccheck/default.nix
Original file line number Diff line number Diff line change
@@ -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;