fvs: init at 0.3.4
for use with bottles
This commit is contained in:
committed by
Martino Fontana
parent
7aa3e528bf
commit
6b802f913f
@@ -0,0 +1,31 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
||||
@@ -3534,6 +3534,8 @@ self: super: with self; {
|
||||
|
||||
fuzzywuzzy = callPackage ../development/python-modules/fuzzywuzzy { };
|
||||
|
||||
fvs = callPackage ../development/python-modules/fvs { };
|
||||
|
||||
fx2 = callPackage ../development/python-modules/fx2 { };
|
||||
|
||||
galario = toPythonModule (pkgs.galario.override {
|
||||
|
||||
Reference in New Issue
Block a user