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 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonOlder 5 + , setuptools 4 6 }: 5 7 6 8 buildPythonPackage rec { 7 9 pname = "sexpdata"; 8 - version = "1.0.0"; 10 + version = "1.0.1"; 11 + format = "pyproject"; 12 + 13 + disabled = pythonOlder "3.7"; 9 14 10 15 src = fetchPypi { 11 16 inherit pname version; 12 - hash = "sha256-6NX3XDeKB8bRzGH62WEbRRyTg8AlMFLhYZioUuFiBwU="; 17 + hash = "sha256-b2XxFSkYkMvOXNJpwTvfH4KkzSO8YbbhUKJ1Ee5qfV4="; 13 18 }; 14 19 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 23 + 15 24 doCheck = false; 16 25 26 + pythonImportsCheck = [ 27 + "sexpdata" 28 + ]; 29 + 17 30 meta = with lib; { 18 31 description = "S-expression parser for Python"; 19 - homepage = "https://github.com/tkf/sexpdata"; 20 - license = licenses.bsd0; 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; [ ]; 21 36 }; 22 - 23 37 }