mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
22 lines
542 B
Nix
22 lines
542 B
Nix
{ lib, buildPythonPackage, fetchPypi, setuptools-scm }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "filelock";
|
|
version = "3.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1qry67zv2pmz8px6wdfbjqv75nmryy2ac7asqgs6q6db2722kpcw";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/benediktschmitt/py-filelock";
|
|
description = "Platform independent file lock for Python";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ henkkalkwater ];
|
|
};
|
|
}
|