python3.pkgs.complycube: init at 1.1.6 (#236895)
This commit is contained in:
parent
02a932836b
commit
d51318c492
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/complycube/default.nix
Normal file
39
pkgs/development/python-modules/complycube/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pyhumps
|
||||||
|
, requests
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "complycube";
|
||||||
|
version = "1.1.6";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchPypi rec {
|
||||||
|
inherit version;
|
||||||
|
pname = "complycube";
|
||||||
|
hash = "sha256-hetcn5RX582CRVmtG5dAvr+NXD+7NKJjaqgOo8LlpqM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pyhumps
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"complycube"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://complycube.com";
|
||||||
|
description = "Official Python client for the ComplyCube API";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ derdennisop ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2238,6 +2238,8 @@ self: super: with self; {
|
||||||
|
|
||||||
compiledb = callPackage ../development/python-modules/compiledb { };
|
compiledb = callPackage ../development/python-modules/compiledb { };
|
||||||
|
|
||||||
|
complycube = callPackage ../development/python-modules/complycube { };
|
||||||
|
|
||||||
compreffor = callPackage ../development/python-modules/compreffor { };
|
compreffor = callPackage ../development/python-modules/compreffor { };
|
||||||
|
|
||||||
compressai = callPackage ../development/python-modules/compressai { };
|
compressai = callPackage ../development/python-modules/compressai { };
|
||||||
|
|
Loading…
Reference in a new issue