diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-29 19:06:27 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-29 19:06:27 +0100 |
commit | 03e856ddf5d28bc61144effb1a393b73cb4a2d9f (patch) | |
tree | f477e079cbdb4b274130e4fcb6c6a5acb781eedf /gnu/packages/protobuf.scm | |
parent | 072f1e22cc6b1708fddedd1ac7ab12827284a785 (diff) | |
parent | 80983df357856fe4e65e384a655e466164e049a1 (diff) | |
download | patches-03e856ddf5d28bc61144effb1a393b73cb4a2d9f.tar patches-03e856ddf5d28bc61144effb1a393b73cb4a2d9f.tar.gz |
Merge branch 'python-build-system'.
Diffstat (limited to 'gnu/packages/protobuf.scm')
-rw-r--r-- | gnu/packages/protobuf.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm index 586e532746..12f6f70521 100644 --- a/gnu/packages/protobuf.scm +++ b/gnu/packages/protobuf.scm @@ -63,17 +63,14 @@ internal RPC protocols and file formats.") (base32 "1xbgbfg4g43bihkyw1a2giqa2gxmqc5wkh0fzqcb90qi1z1hpi7c")))) (build-system python-build-system) - (inputs + (propagated-inputs `(("python-six" ,python-six))) (home-page "https://github.com/google/protobuf") (synopsis "Protocol buffers is a data interchange format") (description "Protocol buffers are a language-neutral, platform-neutral extensible mechanism for serializing structured data.") - (license bsd-3) - (properties `((python2-variant . ,(delay python2-protobuf)))))) + (license bsd-3))) (define-public python2-protobuf - (package (inherit (package-with-python2 - (strip-python2-variant python-protobuf))) - (native-inputs `(("python2-setuptools" ,python2-setuptools))))) + (package-with-python2 python-protobuf)) |