My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/fasteners/default.nix

39 lines
706 B

{ 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; [ ];
};
}