nixpkgs/pkgs/development/python-modules/python-nomad/default.nix
xbreak b24a32d0c7 pythonPackages.python-nomad: init at 1.1.0
Python client library for Hashicorp Nomad
2019-10-27 11:33:46 -07:00

24 lines
572 B
Nix

{ 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 ];
};
}