Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / staticmap / default.nix
blobbb3eac8655bdfed8d6865efc9a17444cd9ffa800
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pillow
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "staticmap";
10   version = "0.5.7";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-x6lrkCumEpLoGMILCBBhnWuBps21C8wauS1QrE2yCn8=";
16   };
18   propagatedBuildInputs = [ requests pillow ];
20   pythonImportsCheck = [ "staticmap" ];
22   # Tests seem to be broken
23   doCheck = false;
25   meta = with lib; {
26     description = "A small, python-based library for creating map images with lines and markers";
27     homepage = "https://pypi.org/project/staticmap/";
28     license = with licenses; [ asl20 ];
29     maintainers = with maintainers; [ traxys ];
30   };