1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.descartes: init at 1.1.0

This commit is contained in:
Josef Kemetmueller 2017-09-03 09:04:34 +00:00
parent 4d70d53618
commit f039bb6b4e
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi,
matplotlib, shapely
}:
buildPythonPackage rec {
pname = "descartes";
version = "1.1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0nq36w9ylvfwmwn5qd9c8fsp2jzsqpmy4xcr6pzxcpmg8qhm0nhk";
};
propagatedBuildInputs = [
matplotlib
shapely
];
meta = with stdenv.lib; {
description = "Python library to use Shapely or GeoJSON objects as matplotlib paths";
homepage = https://bitbucket.org/sgillies/descartes/;
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
};
}

View file

@ -8997,6 +8997,8 @@ in {
};
});
descartes = callPackage ../development/python-modules/descartes { };
distutils_extra = buildPythonPackage rec {
name = "distutils-extra-${version}";
version = "2.39";