depot/third_party/nixpkgs/pkgs/development/python-modules/volatile/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

33 lines
685 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "volatile";
version = "2.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mbr";
repo = "volatile";
rev = "refs/tags/${version}";
hash = "sha256-TYUvr0bscM/FaPk9oiF4Ob7HdKa2HlbpEFmaPfh4ir0=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "volatile" ];
meta = with lib; {
description = "Small extension for the tempfile module";
homepage = "https://github.com/mbr/volatile";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}