Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b705595ee815
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd4c1d0ea0af
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Nov 26, 2018

  1. pythonPackages.simplekml: Init at 1.3.1 (#50883)

    * pythonPackages.simplekml: Init at 1.3.1
    
    * pythonPackages.simplekml: correct description
    rvolosatovs authored and worldofpeace committed Nov 26, 2018
    Copy the full SHA
    dd4c1d0 View commit details
Showing with 22 additions and 0 deletions.
  1. +20 −0 pkgs/development/python-modules/simplekml/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/simplekml/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -3829,6 +3829,8 @@ in {

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

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

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

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