mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python3.pkgs.gemfileparser: init at 0.8.0
This commit is contained in:
parent
4455989424
commit
6079757a7a
2 changed files with 31 additions and 0 deletions
29
pkgs/development/python-modules/gemfileparser/default.nix
Normal file
29
pkgs/development/python-modules/gemfileparser/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue