python3Packages.vpk: init at 1.3.3
This commit is contained in:
parent
120c6f81ec
commit
a7c1bcec09
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/vpk/default.nix
Normal file
28
pkgs/development/python-modules/vpk/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "vpk";
|
||||
version = "1.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ValvePython";
|
||||
repo = "vpk";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-kFKu4fuclanMdlfA/2ZccglM7rSzaq9BbbSaKuIN+Pk=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for working with Valve Pak files";
|
||||
homepage = "https://github.com/ValvePython/vpk";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ joshuafern ];
|
||||
};
|
||||
}
|
|
@ -10014,6 +10014,8 @@ in {
|
|||
|
||||
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { };
|
||||
|
||||
vpk = callPackage ../development/python-modules/vpk { };
|
||||
|
||||
vsts = callPackage ../development/python-modules/vsts { };
|
||||
|
||||
vsts-cd-manager = callPackage ../development/python-modules/vsts-cd-manager { };
|
||||
|
|
Loading…
Reference in a new issue