mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
pythonPackages.debianbts: init at 4.0.1
This commit is contained in:
parent
b1979e6d66
commit
61d6693090
37
pkgs/development/python-modules/debianbts/default.nix
Normal file
37
pkgs/development/python-modules/debianbts/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pysimplesoap
|
||||
, pytest , pytest-xdist
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-debianbts";
|
||||
version = "4.0.1";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b0817d593ccdfb58a5f37b8cb3873bd0b2268b434f2798dc75b206d7550fdf04";
|
||||
};
|
||||
|
||||
buildInputs = [ setuptools ];
|
||||
propagatedBuildInputs = [ pysimplesoap ];
|
||||
checkInputs = [
|
||||
pytest
|
||||
pytest-xdist
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python interface to Debian's Bug Tracking System";
|
||||
homepage = "https://github.com/venthur/python-debianbts";
|
||||
downloadPage = "https://pypi.org/project/python-debianbts/";
|
||||
changelog = "https://github.com/venthur/python-debianbts/blob/${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.nicoo ];
|
||||
};
|
||||
}
|
@ -2557,6 +2557,8 @@ self: super: with self; {
|
||||
|
||||
debian = callPackage ../development/python-modules/debian { };
|
||||
|
||||
debianbts = callPackage ../development/python-modules/debianbts { };
|
||||
|
||||
debian-inspector = callPackage ../development/python-modules/debian-inspector { };
|
||||
|
||||
debtcollector = callPackage ../development/python-modules/debtcollector { };
|
||||
|
Loading…
Reference in New Issue
Block a user