Skip to content

Commit

Permalink
python[39].pkgs.picobox: init
Browse files Browse the repository at this point in the history
This adds a dependency needed for recent sphinxcontrib-openapi.
  • Loading branch information
flokli committed Aug 25, 2022
1 parent 61f2532 commit 10fefa5
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pkgs/development/python-modules/picobox/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flask
, isPy27
, pytestCheckHook
, pythonAtLeast
, setuptools-scm
}:

buildPythonPackage rec {
pname = "picobox";
version = "2.2.0";

# currently broken on 3.10 due to https://github.com/ikalnytskyi/picobox/issues/55
disabled = isPy27 || pythonAtLeast "3.10";

src = fetchFromGitHub {
owner = "ikalnytskyi";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-B2A8GMhBFU/mb/JiiqtP+HvpPj5FYwaYO3gQN2QI6z0=";
};

SETUPTOOLS_SCM_PRETEND_VERSION = version;

nativeBuildInputs = [
setuptools-scm
];


checkInputs = [
flask
pytestCheckHook
];

pythonImportsCheck = [
"picobox"
];

meta = with lib; {
description = "Opinionated dependency injection framework";
homepage = "https://github.com/ikalnytskyi/picobox";
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6718,6 +6718,8 @@ in {

pickleshare = callPackage ../development/python-modules/pickleshare { };

picobox = callPackage ../development/python-modules/picobox { };

picos = callPackage ../development/python-modules/picos { };

pid = callPackage ../development/python-modules/pid { };
Expand Down

0 comments on commit 10fefa5

Please sign in to comment.