unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#44090: Packaging a python library that is implemented with rust
@ 2020-10-20  5:10 Hamzeh Nasajpour
  2020-10-20 10:23 ` Leo Prikler
  2021-02-01 19:02 ` Maxim Cournoyer
  0 siblings, 2 replies; 3+ messages in thread
From: Hamzeh Nasajpour @ 2020-10-20  5:10 UTC (permalink / raw)
  To: 44090

Hi,

I'm not expert in rust and python but I need to package a python library, and this python library is a wrapper over the rust library. This library is using the `setuptools_rust` for build/install. 
* python library: https://github.com/etesync/etebase-py
* rust library: https://github.com/etesync/etebase-rs
* `setup.py`: https://github.com/etesync/etebase-py/blob/master/setup.py

Anyway I need to package this python library. Since guix has two different build system for `python` and `rust` I don't know how can I package it. It's a python library but it should install some rust library inside the python system build.

* This is package definition of `python-setuptools-rust`:
```
(define-public python-setuptools-rust
  (package
    (name "python-setuptools-rust")
    (version "0.11.3")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "setuptools-rust" version))
        (sha256
          (base32
            "1p21sw77197m7pciy8g25bwwaakq1675h0x1lis9sypzr46p2s11"))))
    (build-system python-build-system)
    (native-inputs
     `(("python-setuptools" ,python-setuptools)
       ("python-setuptools-scm" ,python-setuptools-scm)
       ("python-wheel" ,python-wheel)))
    (propagated-inputs
      `(("python-semantic-version"
         ,python-semantic-version)
        ("python-toml" ,python-toml)))
    (home-page
      "https://github.com/PyO3/setuptools-rust")
    (synopsis "Setuptools rust extension plugin")
    (description "Setuptools rust extension plugin")
    (license license:expat)))
```


* And this is package definition of `python-etebase`. 
```
(define-public python-etebase
  (package
    (name "python-etebase")
    (version "0.30.0")
    (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "etebase" version))
        (sha256
          (base32
            "1py635aqnxx3jy4x6zffriqi0l9gc2gk06h0ms91k4rs68h0gb0i"))))
    (build-system python-build-system)
    (native-inputs
      `(("python-msgpack" ,python-msgpack)
        ("python-setuptools-rust" ,python-setuptools-rust)))
    (inputs
      `(("rust-etebase-rs" ,rust-etebase-rs)))
    (home-page
      "https://github.com/etesync/etebase-py")
    (synopsis "Python client library for Etebase")
    (description "Python client library for Etebase")
    (license #f)))
```


This is the error in package building:
```
etebase-0.30.0/src/
etebase-0.30.0/src/lib.rs
etebase-0.30.0/src/glue.rs.in
phase `unpack' succeeded after 0.0 seconds
starting phase `ensure-no-mtimes-pre-1980'                                                                                                                                                                    
phase `ensure-no-mtimes-pre-1980' succeeded after 0.0 seconds
starting phase `enable-bytecode-determinism'                                                                                                                                                                  
phase `enable-bytecode-determinism' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'                                                                                                                                                                           
phase `patch-usr-bin-file' succeeded after 0.0 seconds
starting phase `patch-source-shebangs'                                                                                                                                                                        
phase `patch-source-shebangs' succeeded after 0.0 seconds
starting phase `patch-generated-file-shebangs'                                                                                                                                                                
phase `patch-generated-file-shebangs' succeeded after 0.0 seconds
starting phase `build'                                                                                                                                                                                        
running "python setup.py" with command "build" and parameters ()
running build
running build_py
creating build
creating build/lib
creating build/lib/etebase
copying etebase/__init__.py -> build/lib/etebase
running build_ext
running build_rust
error: Can not find Rust compiler
command "python" "-c" "import setuptools, tokenize;__file__='setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\\r\\n', '\\n');f.close();exec(compile(code, __file__, 'exec'))" "build" failed with status 1
builder for `/gnu/store/45b049cf1k8czxmvwqi3yw6gyk5s7hx5-python-etebase-0.30.0.drv' failed with exit code 1
build of /gnu/store/45b049cf1k8czxmvwqi3yw6gyk5s7hx5-python-etebase-0.30.0.drv failed
View build log at '/var/log/guix/drvs/45/b049cf1k8czxmvwqi3yw6gyk5s7hx5-python-etebase-0.30.0.drv.bz2'.
guix build: error: build of `/gnu/store/45b049cf1k8czxmvwqi3yw6gyk5s7hx5-python-etebase-0.30.0.drv' failed

```



Sorry for duplication, I sent this email here too: https://lists.gnu.org/archive/html/help-guix/2020-10/msg00092.html
then I thought this mailing list is better for asking this type questions.



Regards,
Hamzeh




^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#44090: Packaging a python library that is implemented with rust
  2020-10-20  5:10 bug#44090: Packaging a python library that is implemented with rust Hamzeh Nasajpour
@ 2020-10-20 10:23 ` Leo Prikler
  2021-02-01 19:02 ` Maxim Cournoyer
  1 sibling, 0 replies; 3+ messages in thread
From: Leo Prikler @ 2020-10-20 10:23 UTC (permalink / raw)
  To: h.nasajpour; +Cc: 44090

Hello Hamzeh,

I think part of the issue here, is that the build system for etebase-py 
tries to also build etebase-rs, which you have already packaged.  There
are two ways you could continue here:

1. Patch the build system of etebase-py, so that it works with your
already built etebase-rs.

2. Pull in the etebase-rs source as input to etebase-py and build
everything as one package.

I am not sure, which option makes more sense here.  I do lean a bit
more towards #1, but others may weigh in on this as well.  I'm pretty
sure you can disregard setuptools-rust if you choose #1.  If you do #2,
you might have to mix some of the rust-build-system phases into python-
etebase.

Regards, Leo





^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#44090: Packaging a python library that is implemented with rust
  2020-10-20  5:10 bug#44090: Packaging a python library that is implemented with rust Hamzeh Nasajpour
  2020-10-20 10:23 ` Leo Prikler
@ 2021-02-01 19:02 ` Maxim Cournoyer
  1 sibling, 0 replies; 3+ messages in thread
From: Maxim Cournoyer @ 2021-02-01 19:02 UTC (permalink / raw)
  To: Hamzeh Nasajpour; +Cc: 44090-done

Hello Hamzeh,

"Hamzeh Nasajpour" <h.nasajpour@pantherx.org> writes:

> Hi,
>
> I'm not expert in rust and python but I need to package a python library, and this python library is a wrapper over the rust library. This library is using the `setuptools_rust` for build/install. 
> * python library: https://github.com/etesync/etebase-py
> * rust library: https://github.com/etesync/etebase-rs
> * `setup.py`: https://github.com/etesync/etebase-py/blob/master/setup.py
>
> Anyway I need to package this python library. Since guix has two different build system for `python` and `rust` I don't know how can I package it. It's a python library but it should install some rust library inside the python system build.

[...]

> Sorry for duplication, I sent this email here too: https://lists.gnu.org/archive/html/help-guix/2020-10/msg00092.html
> then I thought this mailing list is better for asking this type questions.

The original list was better suited for this kind of question.  This
list is about actual *bugs*, rather than general question.  I see you've
had a reply from Leo; hopefully that answered your question.

Closing.

Maxim




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-01 19:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-20  5:10 bug#44090: Packaging a python library that is implemented with rust Hamzeh Nasajpour
2020-10-20 10:23 ` Leo Prikler
2021-02-01 19:02 ` Maxim Cournoyer

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).