about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-14 09:30:10 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-23 01:09:30 +0100
commit93acc1fd8d1bea800e3df4918475ef0e0b85a030 (patch)
treeddecba2e0bde27071d3ae12a68e228958e008e8b
parent3bfaef643b70f1e8914226ab45038561523812bb (diff)
python3Packages.pytest-httpbin: fix src
-rw-r--r--pkgs/development/python-modules/pytest-httpbin/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-httpbin/default.nix b/pkgs/development/python-modules/pytest-httpbin/default.nix
index 4b356c6725872..0069eb6f179ec 100644
--- a/pkgs/development/python-modules/pytest-httpbin/default.nix
+++ b/pkgs/development/python-modules/pytest-httpbin/default.nix
@@ -12,9 +12,11 @@ buildPythonPackage rec {
   pname = "pytest-httpbin";
   version = "1.0.1";
 
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "9f73320f97d33cc20bc8a08cb945372948de51402559e87e74e92c56b48da0d7";
+  src = fetchFromGitHub {
+    owner = "kevin1024";
+    repo = "pytest-httpbin";
+    rev = "v${version}";
+    hash = "sha256-Vngd8Vum96+rdG8Nz1+aHrO6WZjiAz+0CeIovaH8N+s=";
   };
 
   buildInputs = [