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 {
|
buildPythonPackage rec {
|
||||||
name = "sasmodels-${version}";
|
name = "sasmodels-${version}";
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
meta = {
|
meta = {
|
||||||
description = "Library of small angle scattering models";
|
description = "Library of small angle scattering models";
|
||||||
homepage = http://sasview.org;
|
homepage = http://sasview.org;
|
||||||
license = licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
maintainers = with lib.maintainers; [ rprospero ];
|
maintainers = with lib.maintainers; [ rprospero ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15321,9 +15321,7 @@ in {
|
|||||||
|
|
||||||
sampledata = callPackage ../development/python-modules/sampledata { };
|
sampledata = callPackage ../development/python-modules/sampledata { };
|
||||||
|
|
||||||
sasmodels = callPackage ../development/python-modules/sasmodels {
|
sasmodels = callPackage ../development/python-modules/sasmodels { };
|
||||||
inherit licenses;
|
|
||||||
};
|
|
||||||
|
|
||||||
scapy = callPackage ../development/python-modules/scapy { };
|
scapy = callPackage ../development/python-modules/scapy { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user