pythonPackages.mwclient: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-17 00:04:24 -04:00 committed by Frederik Rietdijk
parent c81b423fbe
commit c2d600919b
2 changed files with 2 additions and 23 deletions

View file

@ -23,8 +23,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Python client library to the MediaWiki API";
maintainers = with maintainers; [ ];
license = licenses.mit;
homepage = https://github.com/mwclient/mwclient;
};
}
}

View file

@ -2869,27 +2869,7 @@ in {
mypy-protobuf = callPackage ../development/python-modules/mypy-protobuf { };
neuronpy = buildPythonPackage rec {
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";
};
};
neuronpy = callPackage ../development/python-modules/neuronpy { };
pint = callPackage ../development/python-modules/pint { };