97ed4e85ea
- add pythonImportsCheck - run tests
40 lines
714 B
Nix
40 lines
714 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, aenum
|
|
, pythonOlder
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbf";
|
|
version = "0.99.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-aeutAP2y+bUmUOZ39TpXULP+egeBcjyDmtoCheGzw+0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aenum
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} dbf/test.py
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"dbf"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files";
|
|
homepage = "https://github.com/ethanfurman/dbf";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ vrthra ];
|
|
};
|
|
}
|