1 { lib, buildPythonPackage, fetchFromGitHub
2 , pytest, pytestcov, mock }:
4 buildPythonPackage rec {
8 src = fetchFromGitHub {
12 sha256 = "0d9bhxdznry7kzyma00cxwjn6rqnd6vw8v5ym68k6qswgfzb569i";
15 checkInputs = [ pytest pytestcov mock ];
16 checkPhase = "make test";
19 description = "Library for working with Valve's VDF text format";
20 homepage = "https://github.com/ValvePython/vdf";
21 license = licenses.mit;
22 maintainers = with maintainers; [ metadark ];