pythonPackages.mwclient: refactor move to python-modules
This commit is contained in:
parent
c81b423fbe
commit
c2d600919b
|
@ -23,8 +23,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Python client library to the MediaWiki API";
|
description = "Python client library to the MediaWiki API";
|
||||||
maintainers = with maintainers; [ ];
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
homepage = https://github.com/mwclient/mwclient;
|
homepage = https://github.com/mwclient/mwclient;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2869,27 +2869,7 @@ in {
|
||||||
|
|
||||||
mypy-protobuf = callPackage ../development/python-modules/mypy-protobuf { };
|
mypy-protobuf = callPackage ../development/python-modules/mypy-protobuf { };
|
||||||
|
|
||||||
neuronpy = buildPythonPackage rec {
|
neuronpy = callPackage ../development/python-modules/neuronpy { };
|
||||||
name = "neuronpy-${version}";
|
|
||||||
version = "0.1.6";
|
|
||||||
disabled = !isPy27;
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ numpy matplotlib scipy ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Interfaces and utilities for the NEURON simulator and analysis of neural data";
|
|
||||||
maintainers = [ maintainers.nico202 ];
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
|
|
||||||
#No tests included
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://pypi.python.org/packages/source/n/neuronpy/neuronpy-${version}.tar.gz";
|
|
||||||
sha256 = "1clhc2b5fy2l8nfrji4dagmj9419nj6kam090yqxhq5c28sngk25";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pint = callPackage ../development/python-modules/pint { };
|
pint = callPackage ../development/python-modules/pint { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue