gnu: python-tempora: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-tempora)[build-system]: Switch to PYPROJECT-BUILD-SYSTEM. [arguments]: Add #:test-flags. Remove #:phases. [native-inputs]: Remove PYTHON-PYPA-BUILD.
This commit is contained in:
		
							parent
							
								
									8bdc4c1547
								
							
						
					
					
						commit
						b8efe89eb4
					
				
					 1 changed files with 5 additions and 22 deletions
				
			
		| 
						 | 
				
			
			@ -21390,30 +21390,13 @@ particularly convenient for use in tests.")
 | 
			
		|||
       (uri (pypi-uri "tempora" version))
 | 
			
		||||
       (sha256
 | 
			
		||||
        (base32 "09wirlk5vmxlhl9rnxp7g5qz2nsd6b0gnzk5fczbz0s8lsbz386b"))))
 | 
			
		||||
    (build-system python-build-system)
 | 
			
		||||
    (build-system pyproject-build-system)
 | 
			
		||||
    (arguments
 | 
			
		||||
     (list
 | 
			
		||||
      #:phases
 | 
			
		||||
      #~(modify-phases %standard-phases
 | 
			
		||||
          ;; XXX: PEP 517 manual build copied from python-isort.
 | 
			
		||||
          (replace 'build
 | 
			
		||||
            (lambda _
 | 
			
		||||
              (setenv "SOURCE_DATE_EPOCH" "315532800")
 | 
			
		||||
              (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
 | 
			
		||||
          (replace 'install
 | 
			
		||||
            (lambda _
 | 
			
		||||
              (let ((whl (car (find-files "dist" "\\.whl$"))))
 | 
			
		||||
                (invoke "pip" "--no-cache-dir" "--no-input"
 | 
			
		||||
                        "install" "--no-deps" "--prefix" #$output whl))))
 | 
			
		||||
          (replace 'check
 | 
			
		||||
            (lambda* (#:key tests? #:allow-other-keys)
 | 
			
		||||
              (when tests?
 | 
			
		||||
     ;; Do not test the myproject.toml build as it tries to pull
 | 
			
		||||
     ;; dependencies from the Internet.
 | 
			
		||||
                (invoke "pytest" "-k" "not project")))))))
 | 
			
		||||
     (list #:test-flags #~'("-vv" "-k" "not project")))
 | 
			
		||||
    (native-inputs
 | 
			
		||||
     (list python-pypa-build
 | 
			
		||||
           python-freezegun
 | 
			
		||||
     (list python-freezegun
 | 
			
		||||
           python-pytest
 | 
			
		||||
           python-pytest-black
 | 
			
		||||
           python-pytest-checkdocs
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue