about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/crccheck/default.nix
blob: 92a4cc8a84150d288e0227e545939708d58489f7 (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
{ 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;
  };
}