1{ lib, buildPythonPackage, fetchPypi, 2 matplotlib, shapely 3}: 4 5buildPythonPackage rec { 6 pname = "descartes"; 7 version = "1.1.0"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0nq36w9ylvfwmwn5qd9c8fsp2jzsqpmy4xcr6pzxcpmg8qhm0nhk"; 12 }; 13 14 propagatedBuildInputs = [ 15 matplotlib 16 shapely 17 ]; 18 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 }; 27}