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: faea8def191e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1aed180d73ab
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 24, 2018

  1. Copy the full SHA
    93c7503 View commit details

Commits on Nov 6, 2018

  1. Merge pull request #48914 from lsix/add_pythonPackages_owslib

    pythonPackages.owslib: init at 0.17.0
    lsix authored Nov 6, 2018
    Copy the full SHA
    1aed180 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/development/python-modules/owslib/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/owslib/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
buildPythonPackage rec {
pname = "OWSLib";
version = "0.17.0";

src = fetchPypi {
inherit pname version;
sha256 = "1px2nmbpbpp556kjq0ym0a7j24nbvs4w829727b2gr4a4ff86hxc";
};

buildInputs = [ pytest ];
propagatedBuildInputs = [ dateutil pyproj pytz requests ];

# 'tests' dir not included in pypy distribution archive.
doCheck = false;

meta = with lib; {
description = "client for Open Geospatial Consortium web service interface standards";
license = licenses.bsd3;
homepage = https://www.osgeo.org/projects/owslib/;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -4463,6 +4463,8 @@ in {
};
};

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

PyICU = buildPythonPackage rec {
name = "PyICU-2.2";