Files
nixpkgs/pkgs/development/python-modules/agate-dbf/default.nix
R. RyanTM 0cac67ebe5 python37Packages.agate-dbf: 0.2.0 -> 0.2.1 (#58768)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-agate-dbf/versions
2019-04-07 23:06:50 +02:00

21 lines
580 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, agate, dbf, dbfread }:
buildPythonPackage rec {
pname = "agate-dbf";
version = "0.2.1";
propagatedBuildInputs = [ agate dbf dbfread ];
src = fetchPypi {
inherit pname version;
sha256 = "0brprva3vjypb5r9lk6zy10jazp681rxsqxzhz2lr869ir4krj80";
};
meta = with stdenv.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 ];
};
}