about summary refs log tree commit diff
path: root/pkgs/development/python-modules/us/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/us/default.nix')
-rw-r--r--pkgs/development/python-modules/us/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/us/default.nix b/pkgs/development/python-modules/us/default.nix
index 6b15bec2684d0..b42c5c8f6aa19 100644
--- a/pkgs/development/python-modules/us/default.nix
+++ b/pkgs/development/python-modules/us/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, jellyfish
-, pytestCheckHook
-, pythonOlder
-, pytz
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  jellyfish,
+  pytestCheckHook,
+  pythonOlder,
+  pytz,
 }:
 
 buildPythonPackage rec {
@@ -25,21 +26,17 @@ buildPythonPackage rec {
       --replace "jellyfish==" "jellyfish>="
   '';
 
-  propagatedBuildInputs = [
-    jellyfish
-  ];
+  propagatedBuildInputs = [ jellyfish ];
 
   nativeCheckInputs = [
     pytestCheckHook
     pytz
   ];
 
-  pythonImportsCheck = [
-    "us"
-  ];
+  pythonImportsCheck = [ "us" ];
 
   meta = with lib; {
-    description = "A package for easily working with US and state metadata";
+    description = "Package for easily working with US and state metadata";
     mainProgram = "states";
     longDescription = ''
       All US states and territories, postal abbreviations, Associated Press style
@@ -49,6 +46,6 @@ buildPythonPackage rec {
     '';
     homepage = "https://github.com/unitedstates/python-us/";
     license = licenses.bsd3;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }