1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 orjson,
6}:
7
8buildPythonPackage rec {
9 pname = "fvs";
10 version = "0.3.4";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit version;
15 pname = "FVS";
16 extension = "tar.gz";
17 hash = "sha256-yYd0HzdwbqB9kexJjBRRYmdsoWtZtcjCNRz0ZJVM5CI=";
18 };
19
20 propagatedBuildInputs = [ orjson ];
21
22 # no tests in src
23 doCheck = false;
24
25 pythonImportsCheck = [ "fvs" ];
26
27 meta = with lib; {
28 description = "File Versioning System with hash comparison and data storage to create unlinked states that can be deleted";
29 mainProgram = "fvs";
30 homepage = "https://github.com/mirkobrombin/FVS";
31 license = licenses.mit;
32 maintainers = with maintainers; [ bryanasdev000 ];
33 };
34}