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