summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-jsonrpc-server
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-01-24 01:29:22 +0100
committerPavol Rusnak <pavol@rusnak.io>2021-01-24 01:29:22 +0100
commita4bbfba80dbdccf7c3d3ac64fc7afa2494cf743a (patch)
tree3130d7196a32753da705075e39ed2a2d6673a9f2 /pkgs/development/python-modules/python-jsonrpc-server
parent2f34b4b883932f0ee2c1787e704f3915786e8cca (diff)
pkgs/development/python-modules: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/python-modules/python-jsonrpc-server')
-rw-r--r--pkgs/development/python-modules/python-jsonrpc-server/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-jsonrpc-server/default.nix b/pkgs/development/python-modules/python-jsonrpc-server/default.nix
index 9879a441b3e2..3a0ab33363ec 100644
--- a/pkgs/development/python-modules/python-jsonrpc-server/default.nix
+++ b/pkgs/development/python-modules/python-jsonrpc-server/default.nix
@@ -23,7 +23,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [ future ujson ]
- ++ stdenv.lib.optional (pythonOlder "3.2") futures;
+ ++ lib.optional (pythonOlder "3.2") futures;
meta = with lib; {
homepage = "https://github.com/palantir/python-jsonrpc-server";