Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
python.pkgs.ldappool: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Apr 5, 2019
1 parent e94148e commit 836621f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pkgs/development/python-modules/ldappool/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
, pbr, ldap, fixtures, testresources, testtools }:
, pbr, ldap, prettytable, fixtures, testresources, testtools }:

buildPythonPackage rec {
name = "ldappool-${version}";
Expand All @@ -11,9 +11,14 @@ buildPythonPackage rec {
sha256 = "d9c9ec29be3f3e64164be84fe080a3087108836f307a12ec62f7d18988293df3";
};

postPatch = ''
# Tests run without most of the dependencies
echo "" > test-requirements.txt
'';

nativeBuildInputs = [ pbr ];

propagatedBuildInputs = [ ldap ];
propagatedBuildInputs = [ ldap prettytable ];

checkInputs = [ fixtures testresources testtools ];

Expand Down

0 comments on commit 836621f

Please sign in to comment.