Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / dbf / default.nix
blobeb64e379593749a13cb08e67fa4ce5efd5393073
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , aenum
5 , pythonOlder
6 , python
7 }:
9 buildPythonPackage rec {
10   pname = "dbf";
11   version = "0.99.9";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-MFEi1U0RNvrfDtV4HpvPgKTCibAh76z7Gnmj32IubYw=";
19   };
21   propagatedBuildInputs = [
22     aenum
23   ];
25   checkPhase = ''
26     ${python.interpreter} -m dbf.test
27   '';
29   pythonImportsCheck = [
30     "dbf"
31   ];
33   meta = with lib; {
34     description = "Module for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files";
35     homepage = "https://github.com/ethanfurman/dbf";
36     license = licenses.bsd2;
37     maintainers = with maintainers; [ vrthra ];
38   };