about summary refs log tree commit diff
path: root/pkgs/development/python-modules/statsmodels
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-04-20 10:28:31 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-04-20 10:28:31 +0200
commit61c49b1014fe9b72c72d26def2e1f8b49a60977f (patch)
tree54237cb4eedec571a026c65c664fa483c9ee4a01 /pkgs/development/python-modules/statsmodels
parent5576ef9f1d8aed61e0d38945a24010179f5cdf27 (diff)
downloadnixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.tar
nixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.tar.gz
nixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.tar.bz2
nixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.tar.lz
nixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.tar.xz
nixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.tar.zst
nixlib-61c49b1014fe9b72c72d26def2e1f8b49a60977f.zip
pythonPackages.statsmodels: fix eval
Diffstat (limited to 'pkgs/development/python-modules/statsmodels')
-rw-r--r--pkgs/development/python-modules/statsmodels/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/statsmodels/default.nix b/pkgs/development/python-modules/statsmodels/default.nix
index bdadac896ef0..d77dc6e373a3 100644
--- a/pkgs/development/python-modules/statsmodels/default.nix
+++ b/pkgs/development/python-modules/statsmodels/default.nix
@@ -26,7 +26,7 @@ buildPythonPackage rec {
   meta = {
     description = "Statistical computations and models for use with SciPy";
     homepage = "https://www.github.com/statsmodels/statsmodels";
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ fridh ];
+    license = lib.licenses.bsd3;
+    maintainers = with lib.maintainers; [ fridh ];
   };
-}
\ No newline at end of file
+}