about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sasmodels
diff options
context:
space:
mode:
authorAdam Washington <adam.washington@stfc.ac.uk>2018-03-21 13:32:30 +0000
committerAdam Washington <adam.washington@stfc.ac.uk>2018-03-21 13:32:30 +0000
commit609374523c7dbb6c4a6d6834ade1a8ff90b1c354 (patch)
treee922b945aae96a21ce75b4da6015b8be153e85b7 /pkgs/development/python-modules/sasmodels
parent73ed353d271f2f49dc258aa906a7e58321d196a2 (diff)
Remove explicit licenses import from python package sasmodels
The licenses variable was being required by sasmoels, but licenses was
already a child of the lib parameter and was redundant.
Diffstat (limited to 'pkgs/development/python-modules/sasmodels')
-rw-r--r--pkgs/development/python-modules/sasmodels/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/sasmodels/default.nix b/pkgs/development/python-modules/sasmodels/default.nix
index 1360864cf03c0..06e9adf197a98 100644
--- a/pkgs/development/python-modules/sasmodels/default.nix
+++ b/pkgs/development/python-modules/sasmodels/default.nix
@@ -1,4 +1,4 @@
-{lib, fetchgit, licenses, buildPythonPackage, pytest, numpy, scipy, matplotlib, docutils}:
+{lib, fetchgit, buildPythonPackage, pytest, numpy, scipy, matplotlib, docutils}:
 
 buildPythonPackage rec {
   name = "sasmodels-${version}";
@@ -17,7 +17,7 @@ buildPythonPackage rec {
   meta = {
     description = "Library of small angle scattering models";
     homepage = http://sasview.org;
-    license = licenses.bsd3;
+    license = lib.licenses.bsd3;
     maintainers = with lib.maintainers; [ rprospero ];
   };
 }