pythonPackages.vdf: init at 3.1
This commit is contained in:
parent
c7b5cfab44
commit
a3f452ed0c
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
||||||
|
, pytest, pytestcov, mock }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "vdf";
|
||||||
|
version = "3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ValvePython";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "19xqjq2159w2l9vaxlkickvy3zksp9ssdkvbfcfggxz31miwp1zr";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest pytestcov mock ];
|
||||||
|
checkPhase = "make test";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Library for working with Valve's VDF text format";
|
||||||
|
homepage = https://github.com/ValvePython/vdf;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ metadark ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1010,6 +1010,8 @@ in {
|
||||||
|
|
||||||
pyunifi = callPackage ../development/python-modules/pyunifi { };
|
pyunifi = callPackage ../development/python-modules/pyunifi { };
|
||||||
|
|
||||||
|
vdf = callPackage ../development/python-modules/vdf { };
|
||||||
|
|
||||||
vidstab = callPackage ../development/python-modules/vidstab { };
|
vidstab = callPackage ../development/python-modules/vidstab { };
|
||||||
|
|
||||||
webapp2 = callPackage ../development/python-modules/webapp2 { };
|
webapp2 = callPackage ../development/python-modules/webapp2 { };
|
||||||
|
|
Loading…
Reference in New Issue