depot/third_party/nixpkgs/pkgs/development/python-modules/fvs/default.nix
Default email a71eb02b76 Project import generated by Copybara.
GitOrigin-RevId: a115bb9bd56831941be3776c8a94005867f316a7
2022-11-27 10:42:12 +01:00

31 lines
691 B
Nix

{ lib, buildPythonPackage, fetchPypi, orjson}:
buildPythonPackage rec {
pname = "fvs";
version = "0.3.4";
src = fetchPypi {
inherit version;
pname = "FVS";
extension = "tar.gz";
sha256 = "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";
homepage = "https://github.com/mirkobrombin/FVS";
license = licenses.mit;
maintainers = with maintainers; [ bryanasdev000 ];
};
}