Files
nixpkgs/pkgs/development/python-modules/python-nomad/default.nix
T

24 lines
562 B
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib, buildPythonPackage, fetchPypi, requests }:
2019-10-27 10:11:17 +00:00
buildPythonPackage rec {
pname = "python-nomad";
version = "1.2.1";
2019-10-27 10:11:17 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0ivkfdrmb4wpyawvwrgm3jvx6hn49vqjpwbkmkmamigghqqwacx3";
2019-10-27 10:11:17 +00:00
};
propagatedBuildInputs = [ requests ];
# Tests require nomad agent
doCheck = false;
meta = with lib; {
2019-10-27 10:11:17 +00:00
description = "Python client library for Hashicorp Nomad";
homepage = "https://github.com/jrxFive/python-nomad";
license = licenses.mit;
maintainers = with maintainers; [ xbreak ];
};
}