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:
parent
73ed353d27
commit
609374523c
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -15321,9 +15321,7 @@ in {
|
||||
|
||||
sampledata = callPackage ../development/python-modules/sampledata { };
|
||||
|
||||
sasmodels = callPackage ../development/python-modules/sasmodels {
|
||||
inherit licenses;
|
||||
};
|
||||
sasmodels = callPackage ../development/python-modules/sasmodels { };
|
||||
|
||||
scapy = callPackage ../development/python-modules/scapy { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user