Files
nixpkgs/pkgs/development/python-modules/fvs/default.nix
T
2025-11-26 13:42:02 -03:00

35 lines
705 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
orjson,
}:
buildPythonPackage rec {
pname = "fvs";
version = "0.3.4";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "FVS";
extension = "tar.gz";
hash = "sha256-yYd0HzdwbqB9kexJjBRRYmdsoWtZtcjCNRz0ZJVM5CI=";
};
propagatedBuildInputs = [ orjson ];
# no tests in src
doCheck = false;
pythonImportsCheck = [ "fvs" ];
meta = with lib; {
description = "File Versioning System with hash comparison and data storage to create unlinked states that can be deleted";
mainProgram = "fvs";
homepage = "https://github.com/mirkobrombin/FVS";
license = licenses.mit;
maintainers = [ ];
};
}