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