mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
python3Packages.super-collections: init at 0.5.4
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -17774,6 +17774,8 @@ self: super: with self; {
|
||||
|
||||
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 { };
|
||||
|
||||
Reference in New Issue
Block a user