Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / fvs / default.nix
blob6183c18b5031598f97ce8b802e660abc4c05e477
1 { lib, buildPythonPackage, fetchPypi, orjson}:
3 buildPythonPackage rec {
4   pname = "fvs";
5   version = "0.3.4";
7   src = fetchPypi {
8     inherit version;
9     pname = "FVS";
10     extension = "tar.gz";
11     hash = "sha256-yYd0HzdwbqB9kexJjBRRYmdsoWtZtcjCNRz0ZJVM5CI=";
12   };
14   propagatedBuildInputs = [
15     orjson
16   ];
18   # no tests in src
19   doCheck = false;
21   pythonImportsCheck = [
22     "fvs"
23   ];
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   };