Skip to content

Commit

Permalink
init: virtual-glob 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
poperigby committed Dec 22, 2024
1 parent bc26911 commit 8a422ec
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
40 changes: 40 additions & 0 deletions pkgs/development/python-modules/virtual-glob/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
buildPythonPackage,
fetchPypi,
flit-core,
lib,
pytest,
}:

buildPythonPackage rec {
pname = "virtual-glob";
version = "0.2.0";
pyproject = true;

src = fetchPypi {
pname = "virtual_glob";
inherit version;
hash = "sha256-FoHK4giC3pWRxmO4LRVgGduWy1PBgMZkhTyhWpcHvdI=";
};

build-system = [
flit-core
];

optional-dependencies = {
testing = [
pytest
];
};

pythonImportsCheck = [
"virtual_glob"
];

meta = {
description = "Globbing of virtual file systems";
homepage = "https://pypi.org/project/virtual_glob/";
maintainers = [ lib.maintainers.PopeRigby ];
license = lib.licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17697,6 +17697,8 @@ self: super: with self; {

virt-firmware = callPackage ../development/python-modules/virt-firmware { };

virtual-glob = callPackage ../development/python-modules/virtual-glob { };

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

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

0 comments on commit 8a422ec

Please sign in to comment.