mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.molecule-plugins: 23.5.3 -> 25.8.12, fetch from github
fetchPypi fails for the new version, which smells like #501578
(cherry picked from commit 2f6ab4f908)
This commit is contained in:
parent
703929aca2
commit
a18a66e818
1 changed files with 7 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
python-vagrant,
|
||||
docker,
|
||||
|
|
@ -9,12 +9,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "molecule-plugins";
|
||||
version = "23.5.3";
|
||||
version = "25.8.12";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-orFDfVMtc24/vG23pp7FM+IzSyEV/5JFoLJ3LtlzjSM=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ansible-community";
|
||||
repo = "molecule-plugins";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-wTvJ+cjZMTOyaqqDZsA1wsKCpu2FEi69IBlSTxNs3/M=";
|
||||
};
|
||||
|
||||
# reverse the dependency
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue