Skip to content

Commit

Permalink
python.pkgs.tempora: update propagatedBuildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Jul 23, 2018
1 parent 9157532 commit f7d5a33
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/development/python-modules/tempora/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ buildPythonPackage, fetchPypi
{ lib, buildPythonPackage, fetchPypi
, setuptools_scm
, six, pytz}:
, six, pytz, jaraco_functools }:

buildPythonPackage rec {
pname = "tempora";
Expand All @@ -15,5 +15,11 @@ buildPythonPackage rec {

buildInputs = [ setuptools_scm ];

propagatedBuildInputs = [ six pytz ];
propagatedBuildInputs = [ six pytz jaraco_functools ];

meta = with lib; {
description = "Objects and routines pertaining to date and time";
homepage = https://github.com/jaraco/tempora;
license = licenses.mit;
};
}

0 comments on commit f7d5a33

Please sign in to comment.