Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4ee137ed86b2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8d3777925e49
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 27, 2019

  1. python3Packages.python-daemon: fix missing dependency

    Jonathan Ringer committed Nov 27, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8d37779 View commit details
Showing with 22 additions and 5 deletions.
  1. +22 −5 pkgs/development/python-modules/python-daemon/default.nix
27 changes: 22 additions & 5 deletions pkgs/development/python-modules/python-daemon/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, mock, testscenarios, docutils, lockfile }:
{ lib, buildPythonPackage, fetchPypi
, docutils
, lockfile
, mock
, pytest
, testscenarios
, twine
}:

buildPythonPackage rec {
pname = "python-daemon";
@@ -9,12 +16,22 @@ buildPythonPackage rec {
sha256 = "57c84f50a04d7825515e4dbf3a31c70cc44414394a71608dee6cfde469e81766";
};

# A test fail within chroot builds.
doCheck = false;

buildInputs = [ mock testscenarios ];
nativeBuildInputs = [ twine ];
propagatedBuildInputs = [ docutils lockfile ];

checkInputs = [ pytest mock testscenarios ];
checkPhase = ''
pytest -k 'not detaches_process_context \
and not standard_stream_file_descriptors'
'';

pythonImportsCheck = [
"daemon"
"daemon.daemon"
"daemon.pidfile"
"daemon.runner"
];

meta = with lib; {
description = "Library to implement a well-behaved Unix daemon process";
homepage = "https://pagure.io/python-daemon/";