about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/gemfileparser/default.nix
blob: 5a6f76d720bc6af34c31bb129efe326c5b321c03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
  pname = "gemfileparser";
  version = "0.8.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "839592e49ea3fd985cec003ef58f8e77009a69ed7644a0c0acc94cf6dd9b8d6e";
  };

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "gemfileparser"
  ];

  meta = with lib; {
    description = "A library to parse Ruby Gemfile, .gemspec and Cocoapod .podspec file using Python";
    homepage = "https://github.com/gemfileparser/gemfileparser";
    license = with licenses; [ gpl3Plus /* or */ mit ];
    maintainers = [ ];
  };
}