Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pytest-unordered / default.nix
blobb47536983e6a6bf05bfd50fde90b444e60967aab
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytest
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "pytest-unordered";
10   version = "0.5.2";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "utapyngo";
15     repo = "pytest-unordered";
16     rev = "refs/tags/v${version}";
17     hash = "sha256-51UJjnGBO7qBvQlY8F0B29n8+EO2aa3DF3WOwcjZzSo=";
18   };
20   buildInputs = [
21     pytest
22   ];
24   nativeCheckInputs = [
25     pytestCheckHook
26   ];
28   pythonImportsCheck = [
29     "pytest_unordered"
30   ];
32   meta = with lib; {
33     changelog = "https://github.com/utapyngo/pytest-unordered/blob/v${version}/CHANGELOG.md";
34     description = "Test equality of unordered collections in pytest";
35     homepage = "https://github.com/utapyngo/pytest-unordered";
36     license = licenses.mit;
37     maintainers = with maintainers; [ onny ];
38   };