summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/debut/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/debut/default.nix')
-rw-r--r--pkgs/development/python-modules/debut/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/development/python-modules/debut/default.nix b/pkgs/development/python-modules/debut/default.nix
deleted file mode 100644
index 02eece2fc242..000000000000
--- 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;
- };
-}