summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/birch/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/birch/default.nix')
-rw-r--r--pkgs/development/python-modules/birch/default.nix26
1 files changed, 11 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/birch/default.nix b/pkgs/development/python-modules/birch/default.nix
index 56c95e415c31..f91bfea02733 100644
--- a/pkgs/development/python-modules/birch/default.nix
+++ b/pkgs/development/python-modules/birch/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
-, setuptools
-, strct
-, pytestCheckHook
-, pyyaml
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ fetchpatch,
+ setuptools,
+ strct,
+ pytestCheckHook,
+ pyyaml,
}:
buildPythonPackage rec {
@@ -40,13 +41,9 @@ buildPythonPackage rec {
--replace-fail '"0+unknown"' '"${version}"'
'';
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
- dependencies = [
- strct
- ];
+ dependencies = [ strct ];
pythonImportsCheck = [
"birch"
@@ -64,7 +61,6 @@ buildPythonPackage rec {
export HOME="$(mktemp -d)"
'';
-
meta = with lib; {
description = "Simple hierarchical configuration for Python packages";
homepage = "https://github.com/shaypal5/birch";