stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / rangeparser / default.nix
blob60330d213a24281f882109d11b1d224e16a48e91
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "rangeparser";
12   version = "0.1.3";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     pname = "RangeParser";
19     inherit version;
20     hash = "sha256-gjA7Iytg802Lv7/rLfhGE0yjz4e6FfOXbEoWNPjhCOY=";
21   };
23   nativeBuildInputs = [ setuptools ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   pythonImportsCheck = [ "rangeparser" ];
29   meta = with lib; {
30     description = "Parses ranges";
31     homepage = "https://pypi.org/project/RangeParser/";
32     license = licenses.bsd2;
33     maintainers = with maintainers; [ fab ];
34   };