summary refs log tree commit diff
path: root/pkgs/development/python-modules/crccheck/default.nix
blob: 0a9302b8841dd9bf16b295594987788d6e71cc4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, unittestCheckHook
}:

let
  pname = "crccheck";
  version = "1.3.0";
in buildPythonPackage {
  inherit pname version;
  format = "setuptools";

  disabled = !isPy3k;

  src = fetchFromGitHub {
    owner = "MartinScharrer";
    repo = "crccheck";
    rev = "refs/tags/v${version}";
    hash = "sha256-nujt3RWupvCtk7gORejtSwqqVjW9VwztOVGXBHW9T+k=";
  };

  nativeCheckInputs = [
    unittestCheckHook
  ];

  meta = with lib; {
    description = "Python library for CRCs and checksums";
    homepage = "https://github.com/MartinScharrer/crccheck";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    platforms = platforms.linux;
  };
}