mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
python310Packages.logbook: Normalize attribute, pname, dirname
This commit is contained in:
parent
acfd6f7704
commit
52d58e509a
@ -22,7 +22,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
cadquery
|
cadquery
|
||||||
Logbook
|
logbook
|
||||||
pyqt5
|
pyqt5
|
||||||
pyparsing
|
pyparsing
|
||||||
pyqtgraph
|
pyqtgraph
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
, pango
|
, pango
|
||||||
, gst-python
|
, gst-python
|
||||||
, kiss-headers
|
, kiss-headers
|
||||||
, Logbook
|
, logbook
|
||||||
, pillow
|
, pillow
|
||||||
, poetry-core
|
, poetry-core
|
||||||
, pygobject3
|
, pygobject3
|
||||||
@ -47,7 +47,7 @@ buildPythonApplication rec {
|
|||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
gst-python
|
gst-python
|
||||||
kiss-headers
|
kiss-headers
|
||||||
Logbook
|
logbook
|
||||||
pillow
|
pillow
|
||||||
poetry-core
|
poetry-core
|
||||||
pygobject3
|
pygobject3
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ lib, stdenv, buildPythonApplication, fetchFromGitHub, pythonOlder,
|
{ lib, stdenv, buildPythonApplication, fetchFromGitHub, pythonOlder,
|
||||||
attrs, aiohttp, appdirs, click, keyring, Logbook, peewee, janus,
|
attrs, aiohttp, appdirs, click, keyring, logbook, peewee, janus,
|
||||||
prompt-toolkit, matrix-nio, dbus-python, pydbus, notify2, pygobject3,
|
prompt-toolkit, matrix-nio, dbus-python, pydbus, notify2, pygobject3,
|
||||||
setuptools, installShellFiles, nixosTests,
|
setuptools, installShellFiles, nixosTests,
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ buildPythonApplication rec {
|
|||||||
click
|
click
|
||||||
janus
|
janus
|
||||||
keyring
|
keyring
|
||||||
Logbook
|
logbook
|
||||||
matrix-nio
|
matrix-nio
|
||||||
peewee
|
peewee
|
||||||
prompt-toolkit
|
prompt-toolkit
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
, future
|
, future
|
||||||
, atomicwrites
|
, atomicwrites
|
||||||
, attrs
|
, attrs
|
||||||
, Logbook
|
, logbook
|
||||||
, pygments
|
, pygments
|
||||||
, matrix-nio
|
, matrix-nio
|
||||||
, aiohttp
|
, aiohttp
|
||||||
@ -45,7 +45,7 @@ in buildPythonPackage {
|
|||||||
future
|
future
|
||||||
atomicwrites
|
atomicwrites
|
||||||
attrs
|
attrs
|
||||||
Logbook
|
logbook
|
||||||
pygments
|
pygments
|
||||||
matrix-nio
|
matrix-nio
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
, httpx
|
, httpx
|
||||||
, jinja2
|
, jinja2
|
||||||
, jsonschema
|
, jsonschema
|
||||||
, Logbook
|
, logbook
|
||||||
, mock
|
, mock
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
, pytest-bdd
|
, pytest-bdd
|
||||||
@ -57,7 +57,7 @@ buildPythonPackage rec {
|
|||||||
httpx
|
httpx
|
||||||
jinja2
|
jinja2
|
||||||
jsonschema
|
jsonschema
|
||||||
Logbook
|
logbook
|
||||||
mock
|
mock
|
||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
pytest-bdd
|
pytest-bdd
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k, pytest, mock, brotli }:
|
{ lib, buildPythonPackage, fetchPypi, isPy3k, pytest, mock, brotli }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Logbook";
|
pname = "logbook";
|
||||||
version = "1.5.3";
|
version = "1.5.3";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "Logbook";
|
||||||
|
inherit version;
|
||||||
sha256 = "1s1gyfw621vid7qqvhddq6c3z2895ci4lq3g0r1swvpml2nm9x36";
|
sha256 = "1s1gyfw621vid7qqvhddq6c3z2895ci4lq3g0r1swvpml2nm9x36";
|
||||||
};
|
};
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, Logbook
|
, logbook
|
||||||
, aiofiles
|
, aiofiles
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, aiohttp-socks
|
, aiohttp-socks
|
||||||
@ -53,7 +53,7 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
Logbook
|
logbook
|
||||||
aiofiles
|
aiofiles
|
||||||
aiohttp
|
aiohttp
|
||||||
aiohttp-socks
|
aiohttp-socks
|
||||||
|
@ -5563,7 +5563,7 @@ self: super: with self; {
|
|||||||
|
|
||||||
log-symbols = callPackage ../development/python-modules/log-symbols { };
|
log-symbols = callPackage ../development/python-modules/log-symbols { };
|
||||||
|
|
||||||
Logbook = callPackage ../development/python-modules/Logbook { };
|
logbook = callPackage ../development/python-modules/logbook { };
|
||||||
|
|
||||||
logfury = callPackage ../development/python-modules/logfury { };
|
logfury = callPackage ../development/python-modules/logfury { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user