Merge pull request #151028 from das-g/osmpythontools-0.3.3

python3.pkgs.osmpythontools: 0.3.2 -> 0.3.3
This commit is contained in:
Bobby Rong 2021-12-24 11:10:36 +08:00 committed by GitHub
commit 7d087a3164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 20 deletions

View File

@ -13,19 +13,15 @@
buildPythonPackage rec {
pname = "osmpythontools";
version = "0.3.2";
version = "0.3.3";
src = fetchFromGitHub {
owner = "mocnik-science";
repo = "osm-python-tools";
rev = "v${version}";
sha256 = "1m5ai9h1zbp79x0vb138fmyh2hg8lqp859s7j33lra9hds6wb40a";
rev = "v.${version}";
sha256 = "sha256-335zo/kOX4OpUwHas2aaPibY6zNmDaaHJpolbTQWqKk=";
};
# Upstream setup.py has test dependencies in `install_requires` argument.
# Remove them, as we don't run the tests.
patches = [ ./remove-test-only-dependencies.patch ];
propagatedBuildInputs = [
beautifulsoup4
geojson

View File

@ -1,13 +0,0 @@
diff --git a/setup.py b/setup.py
index 801d081..6d93128 100644
--- a/setup.py
+++ b/setup.py
@@ -19,8 +19,6 @@ setup(
'matplotlib',
'numpy',
'pandas',
- 'pytest',
- 'pytest-sugar',
'ujson',
'xarray',
],