mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
28 lines
510 B
Nix
28 lines
510 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pillow,
|
|
isPy27,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "modestmaps";
|
|
version = "1.4.7";
|
|
disabled = !isPy27;
|
|
|
|
src = fetchPypi {
|
|
pname = "ModestMaps";
|
|
inherit version;
|
|
sha256 = "698442a170f02923f8ea55f18526b56c17178162e44304f896a8a5fd65ab4457";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pillow ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for building interactive maps";
|
|
homepage = "http://modestmaps.com";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|