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.
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user