mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
python310Packages.universal-pathlib: init at 0.0.23
https://github.com/fsspec/universal_pathlib
This commit is contained in:
parent
4f75e467df
commit
b125852f90
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, flit-core
|
||||
, fsspec
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "universal-pathlib";
|
||||
version = "0.0.23";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fsspec";
|
||||
repo = "universal_pathlib";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-UT4S7sqRn0/YFzFL1KzByK44u8G7pwWHERzJEm7xmiw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
fsspec
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "upath" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pathlib api extended to use fsspec backends";
|
||||
homepage = "https://github.com/fsspec/universal_pathlib";
|
||||
changelog = "https://github.com/fsspec/universal_pathlib/releases/tag/${src.rev}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -12608,6 +12608,8 @@ self: super: with self; {
|
||||
|
||||
univers = callPackage ../development/python-modules/univers { };
|
||||
|
||||
universal-pathlib = callPackage ../development/python-modules/universal-pathlib { };
|
||||
|
||||
unpaddedbase64 = callPackage ../development/python-modules/unpaddedbase64 { };
|
||||
|
||||
unrardll = callPackage ../development/python-modules/unrardll { };
|
||||
|
Loading…
Reference in New Issue
Block a user