mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
python3.pkgs.debut: remove
This is actually a duplicate of debian-inspector -- it was renamed recently, but still provides the legacy debut interface.
This commit is contained in:
parent
1dff38cae5
commit
6e8c1aaac3
@ -1,38 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, chardet
|
||||
, attrs
|
||||
, pytestCheckHook
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "debut";
|
||||
version = "0.9.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a3a71e475295f4cf4292440c9c7303ebca0309d395536d2a7f86a5f4d7465dc1";
|
||||
};
|
||||
|
||||
dontConfigure = true;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
chardet
|
||||
attrs
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"debut"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to parse Debian deb822-style control and copyright files ";
|
||||
homepage = "https://github.com/nexB/debut";
|
||||
license = with licenses; [ asl20 bsd3 mit ];
|
||||
maintainers = teams.determinatesystems.members;
|
||||
};
|
||||
}
|
@ -1735,8 +1735,6 @@ in {
|
||||
|
||||
debugpy = callPackage ../development/python-modules/debugpy { };
|
||||
|
||||
debut = callPackage ../development/python-modules/debut { };
|
||||
|
||||
decorator = callPackage ../development/python-modules/decorator { };
|
||||
|
||||
decopatch = callPackage ../development/python-modules/decopatch { };
|
||||
|
Loading…
Reference in New Issue
Block a user