python3Packages.mutesync: init at 0.0.1
This commit is contained in:
parent
ac36e938f2
commit
847937c11d
2 changed files with 44 additions and 0 deletions
42
pkgs/development/python-modules/mutesync/default.nix
Normal file
42
pkgs/development/python-modules/mutesync/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, async-timeout
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchpatch
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "mutesync";
|
||||||
|
version = "0.0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "05r8maq59glwgysg98y1vrysfb1mkh9jpbag3ixl13n8jw8clp85";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
async-timeout
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Don't parse requirements.txt, https://github.com/currentoor/pymutesync/pull/1
|
||||||
|
(fetchpatch {
|
||||||
|
name = "add-requirements.patch";
|
||||||
|
url = "https://github.com/currentoor/pymutesync/commit/d66910fc83b1ae3060cdb3fe22a6f91fb70a67f0.patch";
|
||||||
|
sha256 = "0axhgriyyv31b1r1yidxcrv0nyrqbb63xw5qrmv2iy2h0v96ijsk";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has not published tests yet
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "mutesync" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python module for interacting with mutesync buttons";
|
||||||
|
homepage = "https://github.com/currentoor/pymutesync";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4317,6 +4317,8 @@ in {
|
||||||
|
|
||||||
mutatormath = callPackage ../development/python-modules/mutatormath { };
|
mutatormath = callPackage ../development/python-modules/mutatormath { };
|
||||||
|
|
||||||
|
mutesync = callPackage ../development/python-modules/mutesync { };
|
||||||
|
|
||||||
mwclient = callPackage ../development/python-modules/mwclient { };
|
mwclient = callPackage ../development/python-modules/mwclient { };
|
||||||
|
|
||||||
mwdblib = callPackage ../development/python-modules/mwdblib { };
|
mwdblib = callPackage ../development/python-modules/mwdblib { };
|
||||||
|
|
Loading…
Reference in a new issue