3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #133811 from r-ryantm/auto-update/python3.8-python-debian

python38Packages.debian: 0.1.39 -> 0.1.40
This commit is contained in:
Sandro 2021-08-27 05:01:39 +02:00 committed by GitHub
commit 1518274e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,17 @@
{ lib, buildPythonPackage, fetchPypi
, chardet, six}:
{ lib
, buildPythonPackage
, fetchPypi
, chardet
, six
}:
buildPythonPackage rec {
pname = "python-debian";
version = "0.1.39";
version = "0.1.40";
src = fetchPypi {
inherit pname version;
sha256 = "6cca96239b5981f5203216d2113fea522477628607ed0a8427e15094a792541c";
sha256 = "385dfb965eca75164d256486c7cf9bae772d24144249fd18b9d15d3cffb70eea";
};
propagatedBuildInputs = [ chardet six ];
@ -15,8 +19,11 @@ buildPythonPackage rec {
# No tests in archive
doCheck = false;
meta = {
pythonImportsCheck = [ "debian" ];
meta = with lib; {
description = "Debian package related modules";
license = lib.licenses.gpl2;
license = licenses.gpl2;
maintainers = with maintainers; [ ];
};
}