Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / descartes / default.nix
bloba4df1fe20c999d4add7e49604f14b50022307cf5
1 { lib, buildPythonPackage, fetchPypi,
2   matplotlib, shapely
3 }:
5 buildPythonPackage rec {
6   pname = "descartes";
7   version = "1.1.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0nq36w9ylvfwmwn5qd9c8fsp2jzsqpmy4xcr6pzxcpmg8qhm0nhk";
12   };
14   propagatedBuildInputs = [
15     matplotlib
16     shapely
17   ];
19   meta = with lib; {
20     description = "Python library to use Shapely or GeoJSON objects as matplotlib paths";
21     homepage = "https://bitbucket.org/sgillies/descartes/";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ knedlsepp ];
24     # all tests are failing
25     broken = true;
26   };