gnu: tryton modules: Remove propagated-inputs propagated elsewhere.

From all tryton modules propagating `trytond` remove the packages already
propagated by `trytond`.

* gnu/packages/tryton.scm (account, account_invoice) [propagated-inputs]:
  Remove python-dateutils, python-sql.
  (analytic_account, party, product, purchase, stock,
  stock_supply) [propagated-inputs]: Remove python-sql.
This commit is contained in:
Hartmut Goebel 2021-08-26 17:54:49 +02:00
parent 321921e141
commit e0605ddf7b
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -199,9 +199,7 @@ (define-public trytond-account
(arguments (tryton-arguments "account"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-dateutil" ,python-dateutil)
("python-simpleeval" ,python-simpleeval)
("python-sql" ,python-sql)
`(("python-simpleeval" ,python-simpleeval)
("trytond" ,trytond)
("trytond-company" ,trytond-company)
("trytond-currency" ,trytond-currency)
@ -230,9 +228,7 @@ (define-public trytond-account-invoice
(arguments (tryton-arguments "account_invoice"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-dateutil" ,python-dateutil)
("python-sql" ,python-sql)
("trytond" ,trytond)
`(("trytond" ,trytond)
("trytond-account" ,trytond-account)
("trytond-account-product" ,trytond-account-product)
("trytond-company" ,trytond-company)
@ -324,8 +320,7 @@ (define-public trytond-analytic-account
(arguments (tryton-arguments "analytic_account"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-sql" ,python-sql)
("trytond" ,trytond)
`(("trytond" ,trytond)
("trytond-account" ,trytond-account)
("trytond-company" ,trytond-company)
("trytond-currency" ,trytond-currency)
@ -438,8 +433,7 @@ (define-public trytond-party
(arguments (tryton-arguments "party" "--no-doctest"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-sql" ,python-sql)
("python-stnum" ,python-stdnum)
`(("python-stdnum" ,python-stdnum)
("trytond" ,trytond)
("trytond-country" ,trytond-country)))
(home-page "https://www.tryton.org/")
@ -466,8 +460,7 @@ (define-public trytond-product
(arguments (tryton-arguments "product"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-sql" ,python-sql)
("python-stdnum" ,python-stdnum)
`(("python-stdnum" ,python-stdnum)
("trytond" ,trytond)
("trytond-company" ,trytond-company)))
(home-page "https://www.tryton.org/")
@ -494,8 +487,7 @@ (define-public trytond-purchase
(arguments (tryton-arguments "purchase"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-sql" ,python-sql)
("trytond" ,trytond)
`(("trytond" ,trytond)
("trytond-account" ,trytond-account)
("trytond-account-invoice" ,trytond-account-invoice)
("trytond-account-invoice-stock" ,trytond-account-invoice-stock)
@ -559,7 +551,6 @@ (define-public trytond-stock
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-simpleeval" ,python-simpleeval)
("python-sql" ,python-sql)
("trytond" ,trytond)
("trytond-company" ,trytond-company)
("trytond-currency" ,trytond-currency)
@ -617,8 +608,7 @@ (define-public trytond-stock-supply
(arguments (tryton-arguments "stock_supply"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("python-sql" ,python-sql)
("trytond" ,trytond)
`(("trytond" ,trytond)
("trytond-account" ,trytond-account)
("trytond-party" ,trytond-party)
("trytond-product" ,trytond-product)