summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gemfileparser2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/gemfileparser2/default.nix')
-rw-r--r--pkgs/development/python-modules/gemfileparser2/default.nix30
1 files changed, 14 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/gemfileparser2/default.nix b/pkgs/development/python-modules/gemfileparser2/default.nix
index 4a24fb07d7b1..1f92395c8a29 100644
--- a/pkgs/development/python-modules/gemfileparser2/default.nix
+++ b/pkgs/development/python-modules/gemfileparser2/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
-, pythonOlder
-, setuptools-scm
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ pytestCheckHook,
+ pythonOlder,
+ setuptools-scm,
}:
buildPythonPackage rec {
@@ -26,23 +27,20 @@ buildPythonPackage rec {
--replace ">=3.6.*" ">=3.6"
'';
- nativeBuildInputs = [
- setuptools-scm
- ];
+ nativeBuildInputs = [ setuptools-scm ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "gemfileparser2"
- ];
+ 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 ];
+ license = with licenses; [
+ mit # or
+ gpl3Plus
+ ];
maintainers = with maintainers; [ harvidsen ];
};
}