python37Packages.pytest-httpbin: 0.3.0 -> 1.0.0 (#55846)
This commit is contained in:
parent
6e5a66f09f
commit
0f43790d2c
@ -1,28 +1,23 @@
|
|||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchPypi
|
||||||
, pytest
|
, pytest
|
||||||
, flask
|
|
||||||
, decorator
|
|
||||||
, httpbin
|
, httpbin
|
||||||
, six
|
, six
|
||||||
, requests
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytest-httpbin";
|
pname = "pytest-httpbin";
|
||||||
version = "0.3.0";
|
version = "1.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchPypi {
|
||||||
owner = "kevin1024";
|
inherit pname version;
|
||||||
repo = "pytest-httpbin";
|
sha256 = "0wlvw5qgkax7f0i5ks1562s37h2hdmn5yxnp1rajcc2289zm9knq";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0p86ljx775gxxicscs1dydmmx92r1g9bs00vdvxrsl3qdll1ksfm";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ flask decorator httpbin six requests ];
|
propagatedBuildInputs = [ httpbin six ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test
|
py.test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user