evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / braceexpand / default.nix
blobffa97d4c19097e3b52297909482a5559faa0375d
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchPypi,
6   setuptools,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "braceexpand";
12   version = "0.1.7";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit version pname;
19     sha256 = "01gpcnksnqv6np28i4x8s3wkngawzgs99zvjfia57spa42ykkrg6";
20   };
22   build-system = [ setuptools ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "braceexpand" ];
28   meta = {
29     description = "Bash-style brace expansion for Python";
30     homepage = "https://github.com/trendels/braceexpand";
31     changelog = "https://github.com/trendels/braceexpand/blob/v${version}/CHANGELOG.md";
32     license = lib.licenses.mit;
33     maintainers = with lib.maintainers; [
34       newam
35       pbsds
36     ];
37   };