Skip to content

Commit

Permalink
mapsplotlib: init at 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rbvermaa committed Jan 19, 2018
1 parent 1fbf696 commit 26734df
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -10065,6 +10065,24 @@ in {
};
};

mapsplotlib = buildPythonPackage rec {
name = "mapsplotlib-${version}";
version = "1.0.6";

src = pkgs.fetchurl {
url = "mirror://pypi/m/mapsplotlib/${name}.tar.gz";
sha256 = "09gpws3x0jd88n636baxx5izjffrpjy4j6jl8l7vj29yzvrdr2bp";
};

propagatedBuildInputs = with self; [ matplotlib scipy pandas requests pillow ];

meta = {
description = "Custom Python plots on a Google Maps background";
homepage = https://github.com/tcassou/mapsplotlib;
maintainers = [ maintainers.rob ];
};
};

markdown = callPackage ../development/python-modules/markdown { };

markdownsuperscript = callPackage ../development/python-modules/markdownsuperscript {};
Expand Down

1 comment on commit 26734df

@FRidh
Copy link
Member

@FRidh FRidh commented on 26734df Jan 21, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are moving Python expressions out of pkgs/top-level/python-packages.nix into pkgs/development/python-modules/<module>/default.nix.

Please move the expression there, and call it from pkgs/top-level/python-packages.nix using callPackage ../development/python-modules/<package> { };.

Please sign in to comment.