summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/debut
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/python-modules/debut
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
Diffstat (limited to 'pkgs/development/python-modules/debut')
-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;
- };
-}