nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
563 B
Nix
Raw Normal View History

{
lib,
fetchPypi,
buildPythonPackage,
agate,
dbf,
dbfread,
}:
2017-05-03 04:09:41 +00:00
buildPythonPackage rec {
pname = "agate-dbf";
version = "0.2.3";
format = "setuptools";
2017-05-03 04:09:41 +00:00
propagatedBuildInputs = [
agate
dbf
dbfread
];
src = fetchPypi {
inherit pname version;
hash = "sha256-mKK1N1cTbMdNwpflniEB009tSPQfdBVrtsDeJruiqj8=";
2017-05-03 04:09:41 +00:00
};
meta = with lib; {
2017-05-03 04:09:41 +00:00
description = "Adds read support for dbf files to agate";
homepage = "https://github.com/wireservice/agate-dbf";
2017-05-03 04:09:41 +00:00
license = with licenses; [ mit ];
maintainers = [ ];
2017-05-03 04:09:41 +00:00
};
}