summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-daemon
diff options
context:
space:
mode:
authorGraham Bennett <graham@grahambennett.org>2023-05-14 21:35:12 +0100
committerRobert Scott <code@humanleg.org.uk>2023-06-04 13:56:17 +0100
commit33d6d0cce80c0f68f0212d09d381d2c8eef39f1b (patch)
tree2e907bc1e133fbbb35a04f520256ee9969b757bb /pkgs/development/python-modules/python-daemon
parent092fc91112e01e5568384454846bea0d4f2dd0b0 (diff)
python3Packages.python-daemon: 2.3.0 -> 3.0.1
Diffstat (limited to 'pkgs/development/python-modules/python-daemon')
-rw-r--r--pkgs/development/python-modules/python-daemon/default.nix22
1 files changed, 2 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/python-daemon/default.nix b/pkgs/development/python-modules/python-daemon/default.nix
index 6b49888143ec..a0dc1f05b76e 100644
--- a/pkgs/development/python-modules/python-daemon/default.nix
+++ b/pkgs/development/python-modules/python-daemon/default.nix
@@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "python-daemon";
- version = "2.3.0";
+ version = "3.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- sha256 = "bda993f1623b1197699716d68d983bb580043cf2b8a66a01274d9b8297b0aeaf";
+ sha256 = "sha256-bFdFI3L36v9Ak0ocA60YJr9eeTVY6H/vSRMeZGS02uU=";
};
nativeBuildInputs = [
@@ -39,23 +39,6 @@ buildPythonPackage rec {
testtools
];
- patches = [
- # Should be fixed in the next release
- (fetchpatch {
- url = "https://src.fedoraproject.org/rpms/python-daemon/raw/rawhide/f/python-daemon-safe_hasattr.patch";
- hash = "sha256-p5epAlM/sdel01oZkSI1vahUZYX8r90WCJuvBnfMaus=";
- })
- (fetchpatch {
- url = "https://src.fedoraproject.org/rpms/python-daemon/raw/rawhide/f/tests-remove-duplicate-mocking.patch";
- hash = "sha256-5b/dFR3Z8xaPw8AZU95apDZd4ZfmMQhAmavWkVaJog8=";
- })
- ];
-
- disabledTestPaths = [
- # requires removed distutils.command
- "test_version.py"
- ];
-
disabledTests = [
"begin_with_TestCase"
"changelog_TestCase"
@@ -77,7 +60,6 @@ buildPythonPackage rec {
"daemon"
"daemon.daemon"
"daemon.pidfile"
- "daemon.runner"
];
meta = with lib; {