9 buildPythonPackage rec {
10 pname = "backports-strenum";
14 disabled = pythonOlder "3.8";
16 src = fetchFromGitHub {
18 repo = "backports.strenum";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-jbMR9VAGsMAJTP2VQyRr+RPYwWwk8hGAYs4KoZEWa7U=";
31 pythonImportsCheck = [
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 ];