summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-05-07 10:47:45 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-05-08 08:26:02 -0700
commit6e8c1aaac36eeb103371861512620c941fc34224 (patch)
tree9b76bf74434331f1708e62fd2b0d98e2d3f06031 /pkgs
parent1dff38cae5b9764b467196d60520e1e3be419a93 (diff)
python3.pkgs.debut: remove
This is actually a duplicate of debian-inspector -- it was renamed recently, but
still provides the legacy debut interface.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/debut/default.nix38
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/development/python-modules/debut/default.nix b/pkgs/development/python-modules/debut/default.nix
deleted file mode 100644
index 02eece2fc242a..0000000000000
--- a/pkgs/development/python-modules/debut/default.nix
+++ /dev/null
@@ -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;
-  };
-}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index fcffb4d7824d4..01f336c914f71 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -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 { };