python3Packages.pydoods: init at 1.0.2

This commit is contained in:
Fabian Affolter 2021-09-25 23:19:25 +02:00
parent f725095581
commit 03ad3e810c
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "pydoods";
version = "1.0.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1brpcfj1iy9mhf2inla4gi681zlh7g4qvhr6vrprk6r693glpn3x";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pydoods" ];
meta = with lib; {
description = "Python wrapper for the DOODS service";
homepage = "https://github.com/snowzach/pydoods";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6116,6 +6116,8 @@ in {
pydocumentdb = callPackage ../development/python-modules/pydocumentdb { };
pydoods = callPackage ../development/python-modules/pydoods { };
pydot = callPackage ../development/python-modules/pydot {
inherit (pkgs) graphviz;
};