Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / backports-strenum / default.nix
blob229f9282c355543800ce9d6cad46c04d4be446b9
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , poetry-core
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "backports-strenum";
11   version = "1.2.8";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "clbarnes";
18     repo = "backports.strenum";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-jbMR9VAGsMAJTP2VQyRr+RPYwWwk8hGAYs4KoZEWa7U=";
21   };
23   nativeBuildInputs = [
24     poetry-core
25   ];
27   nativeCheckInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "backports.strenum"
33   ];
35   meta = with lib; {
36     description = "Base class for creating enumerated constants that are also subclasses of str";
37     homepage = "https://github.com/clbarnes/backports.strenum";
38     license = with licenses; [ psfl ];
39     maintainers = with maintainers; [ fab ];
40   };