mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 11:53:51 +00:00
Merge pull request #212849 from fabaff/gemfileparser2
python311Packages.gemfileparser2: init at 0.9.3
This commit is contained in:
commit
eff24ece86
42
pkgs/development/python-modules/gemfileparser2/default.nix
Normal file
42
pkgs/development/python-modules/gemfileparser2/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, setuptools-scm
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "gemfileparser2";
|
||||||
|
version = "0.9.3";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-BFKJZOf0W2b0YNbKIwnrmoKGvtP8A6R9PrUt7kYC/Dk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontConfigure = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools-scm
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"gemfileparser2"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library to parse Rubygem gemspec and Gemfile files";
|
||||||
|
homepage = "https://github.com/nexB/gemfileparser2";
|
||||||
|
changelog = "https://github.com/nexB/gemfileparser2/blob/v${version}/CHANGELOG.rst";
|
||||||
|
license = with licenses; [ mit /* or */ gpl3Plus ];
|
||||||
|
maintainers = with maintainers; [ harvidsen ];
|
||||||
|
};
|
||||||
|
}
|
@ -3710,6 +3710,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
gemfileparser = callPackage ../development/python-modules/gemfileparser { };
|
gemfileparser = callPackage ../development/python-modules/gemfileparser { };
|
||||||
|
|
||||||
|
gemfileparser2 = callPackage ../development/python-modules/gemfileparser2 { };
|
||||||
|
|
||||||
genanki = callPackage ../development/python-modules/genanki { };
|
genanki = callPackage ../development/python-modules/genanki { };
|
||||||
|
|
||||||
generic = callPackage ../development/python-modules/generic { };
|
generic = callPackage ../development/python-modules/generic { };
|
||||||
|
Loading…
Reference in New Issue
Block a user