My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/debian/default.nix

33 lines
781 B

{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, chardet
}:
buildPythonPackage rec {
pname = "python-debian";
version = "0.1.43";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "abc702511c4e268da49c22fd97c83de355c559f3271e0798a6b67964be3d8248";
};
propagatedBuildInputs = [ chardet ];
# No tests in archive
doCheck = false;
pythonImportsCheck = [ "debian" ];
meta = with lib; {
description = "Debian package related modules";
homepage = "https://salsa.debian.org/python-debian-team/python-debian";
changelog = "https://salsa.debian.org/python-debian-team/python-debian/-/blob/master/debian/changelog";
license = licenses.gpl2;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}