summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-forecastio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-forecastio/default.nix')
-rw-r--r--pkgs/development/python-modules/python-forecastio/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/development/python-modules/python-forecastio/default.nix b/pkgs/development/python-modules/python-forecastio/default.nix
deleted file mode 100644
index 4117c5adf24..00000000000
--- a/pkgs/development/python-modules/python-forecastio/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ buildPythonPackage, lib, fetchPypi
-, requests
-, nose
-, responses
-}:
-
-buildPythonPackage rec {
-  pname = "python-forecastio";
-  version = "1.4.0";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "0m6lf4a46pnwm5xg9dnmwslwzrpnj6d9agw570grciivbvb1ji0l";
-
-  };
-
-  nativeCheckInputs = [ nose ];
-
-  propagatedBuildInputs = [ requests responses ];
-
-  checkPhase = ''
-    nosetests
-  '';
-
-  meta = with lib; {
-    homepage = "https://zeevgilovitz.com/python-forecast.io/";
-    description = "A thin Python Wrapper for the Dark Sky (formerly forecast.io) weather API";
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ makefu ];
-  };
-}