mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #122958 from olebedev/add-bkyml-python-package
This commit is contained in:
commit
3b87c94c61
@ -7473,6 +7473,12 @@
|
||||
githubId = 20923;
|
||||
name = "Erik Timan";
|
||||
};
|
||||
olebedev = {
|
||||
email = "ole6edev@gmail.com";
|
||||
github = "olebedev";
|
||||
githubId = 848535;
|
||||
name = "Oleg Lebedev";
|
||||
};
|
||||
olejorgenb = {
|
||||
email = "olejorgenb@yahoo.no";
|
||||
github = "olejorgenb";
|
||||
|
45
pkgs/tools/misc/bkyml/default.nix
Normal file
45
pkgs/tools/misc/bkyml/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, python3
|
||||
}:
|
||||
|
||||
with python3.pkgs;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "bkyml";
|
||||
version = "1.4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "01kpx35572mp4xl2fjyvfk39jfgfjcyzymbifk76891kaqkjb7r9";
|
||||
};
|
||||
|
||||
# The pyscaffold is not a runtime dependency but just a python project bootstrapping tool. Thus,
|
||||
# instead of implement this package in nix we remove a dependency on it and fix up the version
|
||||
# of the package, that has been affected by the pyscaffold package dependency removal.
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "['pyscaffold>=3.0a0,<3.1a0'] + " "" \
|
||||
--replace "use_pyscaffold=True" ""
|
||||
substituteInPlace src/bkyml/skeleton.py --replace \
|
||||
"from bkyml import __version__" \
|
||||
"__version__ = \"${version}\""
|
||||
'';
|
||||
|
||||
# Don't run tests because they are broken when run within
|
||||
# buildPythonApplication for reasons I don't quite understand.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "bkyml" ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ruamel_yaml
|
||||
setuptools
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/joscha/bkyml";
|
||||
description = "A CLI tool to generate a pipeline.yaml file for Buildkite on the fly.";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ olebedev ];
|
||||
};
|
||||
}
|
@ -1280,6 +1280,8 @@ in
|
||||
|
||||
bitwarden_rs-vault = callPackage ../tools/security/bitwarden_rs/vault.nix { };
|
||||
|
||||
bkyml = callPackage ../tools/misc/bkyml { };
|
||||
|
||||
blockbench-electron = callPackage ../applications/graphics/blockbench-electron { };
|
||||
|
||||
bmap-tools = callPackage ../tools/misc/bmap-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user