mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-10 10:48:00 +00:00
I have effectively renounced on maintaining all these packages and I do not plan to return them except if I'm forced to. I am also fine with most of these packages being dropped for next releases if no maintainer shows up. Change-Id: I8d167c8029b6991181bd7a094af21c3313af2b51 Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
44 lines
827 B
Nix
44 lines
827 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
bidict,
|
|
bubop,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "item-synchronizer";
|
|
version = "1.1.5";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bergercookie";
|
|
repo = "item_synchronizer";
|
|
rev = "v${version}";
|
|
hash = "sha256-+mviKtCLlJhYV576Q07kcFJvtls5qohKSrqZtBqE/s4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
pythonRelaxDeps = [
|
|
"bidict"
|
|
"bubop"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
bidict
|
|
bubop
|
|
];
|
|
|
|
pythonImportsCheck = [ "item_synchronizer" ];
|
|
|
|
meta = {
|
|
description = "";
|
|
homepage = "https://github.com/bergercookie/item_synchronizer";
|
|
changelog = "https://github.com/bergercookie/item_synchronizer/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|