1{ lib, buildPythonPackage, fetchPypi, mock, testscenarios, docutils, lockfile }: 2 3buildPythonPackage rec { 4 pname = "python-daemon"; 5 version = "2.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "aca149ebf7e73f10cd554b2df5c95295d49add8666348eff6195053ec307728c"; 10 }; 11 12 # A test fail within chroot builds. 13 doCheck = false; 14 15 buildInputs = [ mock testscenarios ]; 16 propagatedBuildInputs = [ docutils lockfile ]; 17 18 meta = with lib; { 19 description = "Library to implement a well-behaved Unix daemon process"; 20 homepage = https://alioth.debian.org/projects/python-daemon/; 21 license = [ licenses.gpl3Plus licenses.asl20 ]; 22 }; 23}