mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pythonPackages.scandir: init at 1.4
This commit is contained in:
parent
20b8212a14
commit
84ee358735
@ -9651,6 +9651,23 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
scandir = self.buildPythonPackage rec {
|
||||
name = "scandir-${version}";
|
||||
version = "1.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/s/scandir/${name}.tar.gz";
|
||||
sha256 = "0yjrgp0mxp3d8bjkq2m1ac2ys8n76wykksvgyjrnil9gr3fx7a5d";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A better directory iterator and faster os.walk()";
|
||||
homepage = "https://github.com/benhoyt/scandir";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
};
|
||||
|
||||
scfbuild = self.buildPythonPackage rec {
|
||||
name = "scfbuild-${version}";
|
||||
version = "1.0.3";
|
||||
|
Loading…
Reference in New Issue
Block a user