Merge pull request #172288 from r-ryantm/auto-update/python3.10-dbf

python310Packages.dbf: 0.99.1 -> 0.99.2
main
Fabian Affolter 2 years ago committed by GitHub
commit f419dc5763
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 51
      pkgs/development/python-modules/dbf/default.nix

@ -1,28 +1,39 @@
{ lib, fetchPypi, buildPythonPackage, aenum, isPy3k, pythonOlder, enum34, python }: { lib
, fetchPypi
, buildPythonPackage
, aenum
, pythonOlder
, python
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "dbf"; pname = "dbf";
version = "0.99.1"; version = "0.99.2";
format = "setuptools";
src = fetchPypi { disabled = pythonOlder "3.7";
inherit pname version;
sha256 = "4ed598a3866dfe7761b8099cf53ab44cb6ed5e4a7dbffb0da8c67a4af8d62fc5";
};
propagatedBuildInputs = [ aenum ] ++ lib.optional (pythonOlder "3.4") enum34; src = fetchPypi {
inherit pname version;
hash = "sha256-aeutAP2y+bUmUOZ39TpXULP+egeBcjyDmtoCheGzw+0=";
};
doCheck = !isPy3k; propagatedBuildInputs = [
# tests are not yet ported. aenum
# https://groups.google.com/forum/#!topic/python-dbase/96rx2xmCG4w ];
checkPhase = '' checkPhase = ''
${python.interpreter} dbf/test.py ${python.interpreter} dbf/test.py
''; '';
meta = with lib; { pythonImportsCheck = [
description = "Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files"; "dbf"
homepage = "https://pypi.python.org/pypi/dbf"; ];
license = licenses.bsd2;
maintainers = with maintainers; [ vrthra ]; 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 ];
};
} }

Loading…
Cancel
Save