Skip to content

Commit

Permalink
Merge pull request #252178 from tjni/poetry-dynamic-versioning
Browse files Browse the repository at this point in the history
python310Packages.poetry-dynamic-versioning: 0.21.5 -> 1.0.1
  • Loading branch information
wegank authored Sep 5, 2023
2 parents 95dd370 + b522470 commit 6dfd282
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 7 additions & 4 deletions pkgs/development/python-modules/dunamai/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
, importlib-metadata
, packaging
, pytestCheckHook
, setuptools
, git
}:

buildPythonPackage rec {
pname = "dunamai";
version = "1.16.0";
version = "1.18.0";
format = "pyproject";

disabled = pythonOlder "3.7";
Expand All @@ -21,7 +20,7 @@ buildPythonPackage rec {
owner = "mtkennerly";
repo = "dunamai";
rev = "refs/tags/v${version}";
hash = "sha256-pPUn+1rv76N/7WVDyWJLPVMweJ1Qbx6/P4zIKU06hSs=";
hash = "sha256-QKXEFwOAa5nIQZA6DHNqnWyshnN+/6qovdqjCd9WF4k=";
};

nativeBuildInputs = [
Expand All @@ -46,7 +45,11 @@ buildPythonPackage rec {
nativeCheckInputs = [
git
pytestCheckHook
setuptools
];

disabledTests = [
# clones from github.com
"test__version__from_git__shallow"
];

pythonImportsCheck = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
, dunamai
, fetchFromGitHub
, jinja2
, markupsafe
, poetry-core
, poetry
, pytestCheckHook
Expand All @@ -13,7 +12,7 @@

buildPythonPackage rec {
pname = "poetry-dynamic-versioning";
version = "0.21.5";
version = "1.0.1";
format = "pyproject";

disabled = pythonOlder "3.7";
Expand All @@ -22,7 +21,7 @@ buildPythonPackage rec {
owner = "mtkennerly";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-YFbIQLIbedErdKiPlZf0+6qtZexuJ6Q6pzhy54vSK5Y=";
hash = "sha256-BGAo3c0TzyhIiDtZjoEP+Eeu51WJB3Wg71poFMWJ+VM=";
};

nativeBuildInputs = [
Expand All @@ -32,7 +31,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [
dunamai
jinja2
markupsafe
tomlkit
];

Expand Down

0 comments on commit 6dfd282

Please sign in to comment.