lol

python3Packages.python-daemon: 2.3.0 -> 3.0.1

authored by

Graham Bennett and committed by
Robert Scott
33d6d0cc 092fc911

+2 -20
+2 -20
pkgs/development/python-modules/python-daemon/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "python-daemon"; 17 - version = "2.3.0"; 17 + version = "3.0.1"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - sha256 = "bda993f1623b1197699716d68d983bb580043cf2b8a66a01274d9b8297b0aeaf"; 24 + sha256 = "sha256-bFdFI3L36v9Ak0ocA60YJr9eeTVY6H/vSRMeZGS02uU="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ ··· 39 39 testtools 40 40 ]; 41 41 42 - patches = [ 43 - # Should be fixed in the next release 44 - (fetchpatch { 45 - url = "https://src.fedoraproject.org/rpms/python-daemon/raw/rawhide/f/python-daemon-safe_hasattr.patch"; 46 - hash = "sha256-p5epAlM/sdel01oZkSI1vahUZYX8r90WCJuvBnfMaus="; 47 - }) 48 - (fetchpatch { 49 - url = "https://src.fedoraproject.org/rpms/python-daemon/raw/rawhide/f/tests-remove-duplicate-mocking.patch"; 50 - hash = "sha256-5b/dFR3Z8xaPw8AZU95apDZd4ZfmMQhAmavWkVaJog8="; 51 - }) 52 - ]; 53 - 54 - disabledTestPaths = [ 55 - # requires removed distutils.command 56 - "test_version.py" 57 - ]; 58 - 59 42 disabledTests = [ 60 43 "begin_with_TestCase" 61 44 "changelog_TestCase" ··· 77 60 "daemon" 78 61 "daemon.daemon" 79 62 "daemon.pidfile" 80 - "daemon.runner" 81 63 ]; 82 64 83 65 meta = with lib; {