about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/fvs/default.nix
blob: 2f075f4be8f0647d27620f0618d0632de4db2d87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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";
    homepage = "https://github.com/mirkobrombin/FVS";
    license = licenses.mit;
    maintainers = with maintainers; [ bryanasdev000 ];
  };
}