Merge pull request #225527 from mweinelt/pytest-describe-2.0.2

python310Packages.pytest-describe: 2.0.1 -> 2.1.0
This commit is contained in:
Martin Weinelt 2023-04-12 22:48:33 +02:00 committed by GitHub
commit c52a52b239
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,13 +6,12 @@
, pytest
# tests
, py
, pytestCheckHook
}:
let
pname = "pytest-describe";
version = "2.0.1";
version = "2.1.0";
in
buildPythonPackage {
inherit pname version;
@ -20,7 +19,7 @@ buildPythonPackage {
src = fetchPypi {
inherit pname version;
hash = "sha256-5cuqMRafAGA0itXKAZECfl8fQfPyf97vIINl4JxV65o=";
hash = "sha256-BjDJWsSUKrjc2OdmI2+GQ2tJhIltsMBZ/CNP72b+lzI=";
};
buildInputs = [
@ -28,7 +27,6 @@ buildPythonPackage {
];
nativeCheckInputs = [
py
pytestCheckHook
];