diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7f7dc9a660f..7ff9f4286d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -104,6 +104,25 @@ in modules // { }; }; + agate-dbf = buildPythonPackage rec { + name = "agate-dbf-0.1.0"; + disabled = isPy3k; + + meta = { + description = "Adds read support for dbf files to agate"; + homepage = "https://github.com/wireservice/agate-dbf"; + license = licenses.mit; + maintainers = with maintainers; [ vrthra ]; + }; + + propagatedBuildInputs = with self; [ agate dbf dbfread ]; + + src = pkgs.fetchurl { + url = "mirror://pypi/a/agate-dbf/${name}.tar.gz"; + sha256 = "0xzz834lh4xbl342c6wmxqy7ynmsrjp42bsjahfcxhsgq33vzngz"; + }; + }; + # packages defined elsewhere blivet = callPackage ../development/python-modules/blivet { };