nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.vdf: 3.3 → 3.4

+10 -6
+10 -6
pkgs/development/python-modules/vdf/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub 2 - , pytest, pytestcov, mock }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , mock 5 + , pytestCheckHook 6 + }: 3 7 4 8 buildPythonPackage rec { 5 9 pname = "vdf"; 6 - version = "3.3"; 10 + version = "3.4"; 7 11 8 12 src = fetchFromGitHub { 9 13 owner = "ValvePython"; 10 14 repo = pname; 11 15 rev = "v${version}"; 12 - sha256 = "0d9bhxdznry7kzyma00cxwjn6rqnd6vw8v5ym68k6qswgfzb569i"; 16 + hash = "sha256-6ozglzZZNKDtADkHwxX2Zsnkh6BE8WbcRcC9HkTTgPU="; 13 17 }; 14 18 15 - checkInputs = [ pytest pytestcov mock ]; 16 - checkPhase = "make test"; 19 + checkInputs = [ mock pytestCheckHook ]; 20 + pythonImportsCheck = [ "vdf" ]; 17 21 18 22 meta = with lib; { 19 23 description = "Library for working with Valve's VDF text format";