mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
pythonPackages.python-nomad: init at 1.1.0
Python client library for Hashicorp Nomad
This commit is contained in:
parent
2c6c89ea69
commit
b24a32d0c7
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/python-nomad/default.nix
Normal file
23
pkgs/development/python-modules/python-nomad/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, requests }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-nomad";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1rf6ad35vg3yi1p4l383xwx0ammdvr1k71bxg93bgcvljypx4cyn";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
# Tests require nomad agent
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python client library for Hashicorp Nomad";
|
||||||
|
homepage = "https://github.com/jrxFive/python-nomad";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ xbreak ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5839,6 +5839,8 @@ in {
|
||||||
|
|
||||||
pyregion = callPackage ../development/python-modules/pyregion {};
|
pyregion = callPackage ../development/python-modules/pyregion {};
|
||||||
|
|
||||||
|
python-nomad = callPackage ../development/python-modules/python-nomad { };
|
||||||
|
|
||||||
python-u2flib-host = callPackage ../development/python-modules/python-u2flib-host { };
|
python-u2flib-host = callPackage ../development/python-modules/python-u2flib-host { };
|
||||||
|
|
||||||
python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { };
|
python-xmp-toolkit = callPackage ../development/python-modules/python-xmp-toolkit { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue