depot/third_party/nixpkgs/pkgs/development/python-modules/dockerfile-parse/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

40 lines
872 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dockerfile-parse";
version = "2.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-MYTM3FEyIZg+UDrADhqlBKKqj4Tl3mc8RrC27umex7w=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"dockerfile_parse"
];
disabledTests = [
# python-dockerfile-parse.spec is not present
"test_all_versions_match"
];
meta = with lib; {
description = "Library for parsing Dockerfile files";
homepage = "https://github.com/DBuildService/dockerfile-parse";
changelog = "https://github.com/containerbuildsystem/dockerfile-parse/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ leenaars ];
};
}