mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-14 23:07:03 +00:00
pythonPackages.simplekml: Init at 1.3.1 (#50883)
* pythonPackages.simplekml: Init at 1.3.1 * pythonPackages.simplekml: correct description
This commit is contained in:
parent
b705595ee8
commit
dd4c1d0ea0
2 changed files with 22 additions and 0 deletions
20
pkgs/development/python-modules/simplekml/default.nix
Normal file
20
pkgs/development/python-modules/simplekml/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ lib , buildPythonPackage , fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "simplekml";
|
||||||
|
version = "1.3.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "30c121368ce1d73405721730bf766721e580cae6fbb7424884c734c89ec62ad7";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false; # no tests are defined in 1.3.1
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Generate KML with as little effort as possible";
|
||||||
|
homepage = https://readthedocs.org/projects/simplekml/;
|
||||||
|
license = licenses.lgpl3Plus;
|
||||||
|
maintainers = with maintainers; [ rvolosatovs ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3829,6 +3829,8 @@ in {
|
||||||
|
|
||||||
simplejson = callPackage ../development/python-modules/simplejson { };
|
simplejson = callPackage ../development/python-modules/simplejson { };
|
||||||
|
|
||||||
|
simplekml = callPackage ../development/python-modules/simplekml { };
|
||||||
|
|
||||||
slimit = callPackage ../development/python-modules/slimit { };
|
slimit = callPackage ../development/python-modules/slimit { };
|
||||||
|
|
||||||
snowballstemmer = callPackage ../development/python-modules/snowballstemmer { };
|
snowballstemmer = callPackage ../development/python-modules/snowballstemmer { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue