Merge pull request #235884 from r-ryantm/auto-update/python310Packages.python-nomad

python310Packages.python-nomad: 1.5.0 -> 2.0.0

authored by

Fabian Affolter and committed by
GitHub
962cc002 1a351e6d

+18 -5
+18 -5
pkgs/development/python-modules/python-nomad/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, requests }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + , pythonOlder 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "python-nomad"; 5 - version = "1.5.0"; 10 + version = "2.0.0"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 6 14 7 15 src = fetchPypi { 8 16 inherit pname version; 9 - hash = "sha256-VpngJvm9eK60lPeFIbjnTwzWWoJ9tRBDYP5SghDMbAg="; 17 + hash = "sha256-5IyHNw1ArE8fU9DoSQMGkDI9d/OiR1YI/7nTPeFIK+A="; 10 18 }; 11 19 12 - propagatedBuildInputs = [ requests ]; 20 + propagatedBuildInputs = [ 21 + requests 22 + ]; 13 23 14 24 # Tests require nomad agent 15 25 doCheck = false; 16 26 17 - pythonImportsCheck = [ "nomad" ]; 27 + pythonImportsCheck = [ 28 + "nomad" 29 + ]; 18 30 19 31 meta = with lib; { 20 32 description = "Python client library for Hashicorp Nomad"; 21 33 homepage = "https://github.com/jrxFive/python-nomad"; 34 + changelog = "https://github.com/jrxFive/python-nomad/blob/${version}/CHANGELOG.md"; 22 35 license = licenses.mit; 23 36 maintainers = with maintainers; [ xbreak ]; 24 37 };