diff options
Diffstat (limited to 'pkgs/development/python-modules/agate-dbf/default.nix')
-rw-r--r-- | pkgs/development/python-modules/agate-dbf/default.nix | 41 |
1 files changed, 26 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/agate-dbf/default.nix b/pkgs/development/python-modules/agate-dbf/default.nix index 1f3055b4600d..38e7f713f91c 100644 --- a/pkgs/development/python-modules/agate-dbf/default.nix +++ b/pkgs/development/python-modules/agate-dbf/default.nix @@ -1,21 +1,32 @@ -{ lib, fetchPypi, buildPythonPackage, agate, dbf, dbfread }: +{ + lib, + fetchPypi, + buildPythonPackage, + agate, + dbf, + dbfread, +}: buildPythonPackage rec { - pname = "agate-dbf"; - version = "0.2.3"; - format = "setuptools"; + pname = "agate-dbf"; + version = "0.2.3"; + format = "setuptools"; - propagatedBuildInputs = [ agate dbf dbfread ]; + propagatedBuildInputs = [ + agate + dbf + dbfread + ]; - src = fetchPypi { - inherit pname version; - sha256 = "sha256-mKK1N1cTbMdNwpflniEB009tSPQfdBVrtsDeJruiqj8="; - }; + src = fetchPypi { + inherit pname version; + hash = "sha256-mKK1N1cTbMdNwpflniEB009tSPQfdBVrtsDeJruiqj8="; + }; - meta = with lib; { - description = "Adds read support for dbf files to agate"; - homepage = "https://github.com/wireservice/agate-dbf"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ vrthra ]; - }; + meta = with lib; { + description = "Adds read support for dbf files to agate"; + homepage = "https://github.com/wireservice/agate-dbf"; + license = with licenses; [ mit ]; + maintainers = [ ]; + }; } |