pythonPackages.manuel: refactor move to python-modules
This commit is contained in:
parent
d5fa9ee541
commit
1bbb17afe5
25
pkgs/development/python-modules/manuel/default.nix
Normal file
25
pkgs/development/python-modules/manuel/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, six
|
||||||
|
, zope_testing
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "manuel";
|
||||||
|
version = "1.8.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1diyj6a8bvz2cdf9m0g2bbx9z2yjjnn3ylbg1zinpcjj6vldfx59";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six zope_testing ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A documentation builder";
|
||||||
|
homepage = https://pypi.python.org/pypi/manuel;
|
||||||
|
license = licenses.zpl20;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5805,23 +5805,7 @@ in {
|
|||||||
|
|
||||||
marshmallow-sqlalchemy = callPackage ../development/python-modules/marshmallow-sqlalchemy { };
|
marshmallow-sqlalchemy = callPackage ../development/python-modules/marshmallow-sqlalchemy { };
|
||||||
|
|
||||||
manuel = buildPythonPackage rec {
|
manuel = callPackage ../development/python-modules/manuel { };
|
||||||
name = "manuel-${version}";
|
|
||||||
version = "1.8.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/m/manuel/${name}.tar.gz";
|
|
||||||
sha256 = "1diyj6a8bvz2cdf9m0g2bbx9z2yjjnn3ylbg1zinpcjj6vldfx59";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ six zope_testing ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "A documentation builder";
|
|
||||||
homepage = https://pypi.python.org/pypi/manuel;
|
|
||||||
license = licenses.zpl20;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mapsplotlib = buildPythonPackage rec {
|
mapsplotlib = buildPythonPackage rec {
|
||||||
name = "mapsplotlib-${version}";
|
name = "mapsplotlib-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user