python3.pkgs.osmpythontools: 0.3.2 -> 0.3.3

This commit is contained in:
Raphael Borun Das Gupta
2021-12-16 23:08:41 +01:00
parent 4a7d9aa0e4
commit 92b6dfa44f
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',
],