depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-describe/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

42 lines
750 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
# build
, pytest
# tests
, py
, pytestCheckHook
}:
let
pname = "pytest-describe";
version = "2.0.1";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-5cuqMRafAGA0itXKAZECfl8fQfPyf97vIINl4JxV65o=";
};
buildInputs = [
pytest
];
checkInputs = [
py
pytestCheckHook
];
meta = with lib; {
description = "Describe-style plugin for the pytest framework";
homepage = "https://github.com/pytest-dev/pytest-describe";
changelog = "https://github.com/pytest-dev/pytest-describe/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}