Merge pull request #238174 from r-ryantm/auto-update/python310Packages.sexpdata

python310Packages.sexpdata: 1.0.0 -> 1.0.1

authored by Mario Rodas and committed by GitHub afa15f8c c06f025c

+19 -5
+19 -5
pkgs/development/python-modules/sexpdata/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 }: 5 6 buildPythonPackage rec { 7 pname = "sexpdata"; 8 - version = "1.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - hash = "sha256-6NX3XDeKB8bRzGH62WEbRRyTg8AlMFLhYZioUuFiBwU="; 13 }; 14 15 doCheck = false; 16 17 meta = with lib; { 18 description = "S-expression parser for Python"; 19 - homepage = "https://github.com/tkf/sexpdata"; 20 - license = licenses.bsd0; 21 }; 22 - 23 }
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , pythonOlder 5 + , setuptools 6 }: 7 8 buildPythonPackage rec { 9 pname = "sexpdata"; 10 + version = "1.0.1"; 11 + format = "pyproject"; 12 + 13 + disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-b2XxFSkYkMvOXNJpwTvfH4KkzSO8YbbhUKJ1Ee5qfV4="; 18 }; 19 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 23 + 24 doCheck = false; 25 26 + pythonImportsCheck = [ 27 + "sexpdata" 28 + ]; 29 + 30 meta = with lib; { 31 description = "S-expression parser for Python"; 32 + homepage = "https://github.com/jd-boyd/sexpdata"; 33 + changelog = "https://github.com/jd-boyd/sexpdata/releases/tag/v${version}"; 34 + license = licenses.bsd2; 35 + maintainers = with maintainers; [ ]; 36 }; 37 }