depot/third_party/nixpkgs/pkgs/development/python-modules/fasteners/default.nix
Default email bb584b27e9 Project import generated by Copybara.
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
2022-04-15 03:41:22 +02:00

32 lines
612 B
Nix

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