summary refs log blame commit diff
path: root/pkgs/development/python-modules/debian/default.nix
blob: e97c3420f454370aa7fa0e9ca7085411b9ffeee9 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                    



                          
                     


                          
                                                                                


                                          







                                                   
 
{ 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;
  };
}