python3.pkgs.gemfileparser: init at 0.8.0

This commit is contained in:
Cole Helbling 2021-04-19 20:48:45 -07:00
parent 4455989424
commit 6079757a7a
No known key found for this signature in database
GPG key ID: B37E0F2371016A4C
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "gemfileparser";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "839592e49ea3fd985cec003ef58f8e77009a69ed7644a0c0acc94cf6dd9b8d6e";
};
checkInputs = [
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 = teams.determinatesystems.members;
};
}

View file

@ -2692,6 +2692,8 @@ in {
geeknote = callPackage ../development/python-modules/geeknote { };
gemfileparser = callPackage ../development/python-modules/gemfileparser { };
genanki = callPackage ../development/python-modules/genanki { };
genome-collector = callPackage ../development/python-modules/genome-collector { };