summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/debian/default.nix
blob: e97c3420f454370aa7fa0e9ca7085411b9ffeee9 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi
, chardet, six}:

buildPythonPackage rec {
  pname = "python-debian";
  version = "0.1.39";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6cca96239b5981f5203216d2113fea522477628607ed0a8427e15094a792541c";
  };

  propagatedBuildInputs = [ chardet six ];

  # No tests in archive
  doCheck = false;

  meta = {
    description = "Debian package related modules";
    license = lib.licenses.gpl2;
  };
}