1 { lib, buildPythonPackage, fetchPypi, six, pytestcov, pytest }:
3 buildPythonPackage rec {
5 pname = "dockerfile-parse";
9 sha256 = "f37bfa327fada7fad6833aebfaac4a3aaf705e4cf813b737175feded306109e8";
13 echo " " > tests/requirements.txt \
16 propagatedBuildInputs = [ six ];
18 checkInputs = [ pytestcov pytest ];
21 description = "Python library for parsing Dockerfile files";
22 homepage = "https://github.com/DBuildService/dockerfile-parse";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ leenaars ];