nixpkgs/pkgs/development/python-modules/python-daemon/default.nix
2018-02-28 01:18:56 +01:00

24 lines
662 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib, buildPythonPackage, fetchPypi, mock, testscenarios, docutils, lockfile }:
buildPythonPackage rec {
pname = "python-daemon";
version = "2.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "261c859be5c12ae7d4286dc6951e87e9e1a70a882a8b41fd926efc1ec4214f73";
};
# A test fail within chroot builds.
doCheck = false;
buildInputs = [ mock testscenarios ];
propagatedBuildInputs = [ docutils lockfile ];
meta = with lib; {
description = "Library to implement a well-behaved Unix daemon process";
homepage = https://alioth.debian.org/projects/python-daemon/;
license = [ licenses.gpl3Plus licenses.asl20 ];
};
}