Skip to content

Commit

Permalink
Merge pull request #235884 from r-ryantm/auto-update/python310Package…
Browse files Browse the repository at this point in the history
…s.python-nomad

python310Packages.python-nomad: 1.5.0 -> 2.0.0
  • Loading branch information
fabaff committed Jun 4, 2023
2 parents 1a351e6 + e635ba6 commit 962cc00
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions pkgs/development/python-modules/python-nomad/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
{ lib, buildPythonPackage, fetchPypi, requests }:
{ lib
, buildPythonPackage
, fetchPypi
, requests
, pythonOlder
}:

buildPythonPackage rec {
pname = "python-nomad";
version = "1.5.0";
version = "2.0.0";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-VpngJvm9eK60lPeFIbjnTwzWWoJ9tRBDYP5SghDMbAg=";
hash = "sha256-5IyHNw1ArE8fU9DoSQMGkDI9d/OiR1YI/7nTPeFIK+A=";
};

propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
requests
];

# Tests require nomad agent
doCheck = false;

pythonImportsCheck = [ "nomad" ];
pythonImportsCheck = [
"nomad"
];

meta = with lib; {
description = "Python client library for Hashicorp Nomad";
homepage = "https://github.com/jrxFive/python-nomad";
changelog = "https://github.com/jrxFive/python-nomad/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ xbreak ];
};
Expand Down

0 comments on commit 962cc00

Please sign in to comment.