kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / development / python-modules / gemfileparser / default.nix
blob057898dded4e025c9543c2297a8ab63b019acea0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "gemfileparser";
12   version = "0.8.0";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-g5WS5J6j/Zhc7AA+9Y+OdwCaae12RKDArMlM9t2bjW4=";
20   };
22   build-system = [ setuptools ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "gemfileparser" ];
28   meta = with lib; {
29     description = "Library to parse Ruby Gemfile, .gemspec and Cocoapod .podspec file using Python";
30     homepage = "https://github.com/gemfileparser/gemfileparser";
31     license = with licenses; [
32       gpl3Plus
33       mit
34     ];
35     maintainers = [ ];
36     mainProgram = "parsegemfile";
37   };