depot/third_party/nixpkgs/pkgs/development/python-modules/fasteners/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

39 lines
706 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, diskcache
, more-itertools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "fasteners";
version = "0.17.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "harlowja";
repo = pname;
rev = version;
hash = "sha256-FVhHp8BZ/wQQyr5AcuDo94LlflixhjZ0SnheSdHuDVQ=";
};
nativeBuildInputs = [
setuptools
];
checkInputs = [
diskcache
more-itertools
pytestCheckHook
];
meta = with lib; {
description = "A python package that provides useful locks";
homepage = "https://github.com/harlowja/fasteners";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}