mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
protocol: module to application
protocol really is a "buildPythonApplication" rather than a buildPythonPackage".
This commit is contained in:
parent
327a84749e
commit
88dae1a1c8
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchFromGitHub }:
|
{ stdenv, buildPythonApplication, fetchFromGitHub }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonApplication rec {
|
||||||
pname = "protocol";
|
pname = "protocol";
|
||||||
version = "20171226";
|
version = "20171226";
|
||||||
|
|
@ -20118,6 +20118,8 @@ with pkgs;
|
|||||||
|
|
||||||
pt = callPackage ../applications/misc/pt { };
|
pt = callPackage ../applications/misc/pt { };
|
||||||
|
|
||||||
|
protocol = python3Packages.callPackage ../applications/networking/protocol { };
|
||||||
|
|
||||||
pykms = callPackage ../tools/networking/pykms { };
|
pykms = callPackage ../tools/networking/pykms { };
|
||||||
|
|
||||||
pyload = callPackage ../applications/networking/pyload {};
|
pyload = callPackage ../applications/networking/pyload {};
|
||||||
|
@ -20998,8 +20998,6 @@ EOF
|
|||||||
|
|
||||||
trezor = callPackage ../development/python-modules/trezor { };
|
trezor = callPackage ../development/python-modules/trezor { };
|
||||||
|
|
||||||
protocol = callPackage ../development/python-modules/protocol { };
|
|
||||||
|
|
||||||
trezor_agent = buildPythonPackage rec{
|
trezor_agent = buildPythonPackage rec{
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "trezor_agent";
|
pname = "trezor_agent";
|
||||||
|
Loading…
Reference in New Issue
Block a user