python3Packages.super-collections: init at 0.5.4

Marcel c8757324 ab0f3607

Changed files
+48
pkgs
development
python-modules
super-collections
top-level
+46
pkgs/development/python-modules/super-collections/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchFromGitHub,
+
setuptools,
+
hjson,
+
pytestCheckHook,
+
rich,
+
}:
+
+
buildPythonPackage rec {
+
pname = "super-collections";
+
version = "0.5.4";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "fralau";
+
repo = "super-collections";
+
tag = "v${version}";
+
hash = "sha256-gp5BREoa1oHGm1ymDlIdlLTqyIvB0RmkNLYDJssI3VE=";
+
};
+
+
build-system = [
+
setuptools
+
];
+
+
dependencies = [
+
hjson
+
];
+
+
nativeCheckInputs = [
+
pytestCheckHook
+
rich
+
];
+
+
pythonImportsCheck = [
+
"super_collections"
+
];
+
+
meta = {
+
description = "Python SuperDictionaries (with attributes) and SuperLists";
+
homepage = "https://github.com/fralau/super-collections";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ marcel ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
supafunc = callPackage ../development/python-modules/supafunc { };
+
super-collections = callPackage ../development/python-modules/super-collections { };
+
superqt = callPackage ../development/python-modules/superqt { };
supervise-api = callPackage ../development/python-modules/supervise-api { };